diff options
author | Christophe Leroy <christophe.leroy@csgroup.eu> | 2022-03-08 20:20:21 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2022-05-05 16:00:20 +0200 |
commit | 07071346bb76f4fbc2c1ca8894ec3d3ad2f22577 (patch) | |
tree | cfd9d0464f484e50ab66c74c1984baabc70c828e | |
parent | powerpc/64: Move pci_device_from_OF_node() out of asm/pci-bridge.h (diff) | |
download | linux-07071346bb76f4fbc2c1ca8894ec3d3ad2f22577.tar.xz linux-07071346bb76f4fbc2c1ca8894ec3d3ad2f22577.zip |
powerpc: Don't include asm/prom.h in asm/parport.h
parport.h needs only of_irq.h, no need to go via asm/prom.h
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/ec796ee56cf61f16ba24e62a9d3525d11931538c.1646767214.git.christophe.leroy@csgroup.eu
-rw-r--r-- | arch/powerpc/include/asm/parport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/include/asm/parport.h b/arch/powerpc/include/asm/parport.h index 8abfb8f7c33d..42cc321ed754 100644 --- a/arch/powerpc/include/asm/parport.h +++ b/arch/powerpc/include/asm/parport.h @@ -11,7 +11,7 @@ #define _ASM_POWERPC_PARPORT_H #ifdef __KERNEL__ -#include <asm/prom.h> +#include <linux/of_irq.h> static int parport_pc_find_nonpci_ports (int autoirq, int autodma) { |