#ifndef __ASM_GENERIC_PARPORT_H #define __ASM_GENERIC_PARPORT_H /* * An ISA bus may have i8255 parallel ports at well-known * locations in the I/O space, which are scanned by * parport_pc_find_isa_ports. * * Without ISA support, the driver will only attach * to devices on the PCI bus. */ static int parport_pc_find_isa_ports(int autoirq, int autodma); static int parport_pc_find_nonpci_ports(int autoirq, int autodma) { #ifdef CONFIG_ISA return parport_pc_find_isa_ports(autoirq, autodma); #else return 0; #endif } #endif /* __ASM_GENERIC_PARPORT_H */ ead>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2016-09-05 13:18:15 +0200
committerGeert Uytterhoeven <geert@linux-m68k.org>2016-09-19 11:29:45 +0200
commita1a9e88f708fc1c5602cbe9761f246c6acbc27cd (patch)
tree774f6b727141b4bd22e3ff97e778084b9d3911b5
parent986d80466712c0e8878c05328b5b5e7775c53003 (diff)
m68k: Use IS_ENABLED() instead of checking for built-in or module
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>