diff options
author | Guenter Roeck <linux@roeck-us.net> | 2015-04-22 22:23:54 -0700 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2015-05-03 11:08:52 +0200 |
commit | 647385a0a32db8bf075b1c6d03b01d0c24d55c91 (patch) | |
tree | 1df39b070709f6c6a51f061163aeec97fc0f5d88 | |
parent | 43ee6fcfbe5d2bc68fee874e411acf17e1adc33f (diff) |
drivers: parport: Kconfig: exclude arm64 for PARPORT_PC
Fix build problem seen with arm64:allmodconfig.
drivers/parport/parport_pc.c:67:25: fatal error: asm/parport.h: No such file or
directory
arm64 does not support PARPORT_PC.
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/parport/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/parport/Kconfig b/drivers/parport/Kconfig index 70694ce38be2..46d2de24bf3e 100644 --- a/drivers/parport/Kconfig +++ b/drivers/parport/Kconfig @@ -37,7 +37,7 @@ config PARPORT_PC tristate "PC-style hardware" depends on (!SPARC64 || PCI) && !SPARC32 && !M32R && !FRV && !S390 && \ (!M68K || ISA) && !MN10300 && !AVR32 && !BLACKFIN && \ - !XTENSA && !CRIS && !H8300 + !XTENSA && !CRIS && !H8300 && !ARM64 ---help--- You should say Y here if you have a PC-style parallel port. All |