diff options
author | Damien Le Moal | 2022-01-04 15:19:30 +0900 |
---|---|---|
committer | Damien Le Moal | 2022-01-14 15:17:17 +0900 |
commit | dc5d7b3cfd7833d41c2e2fad5fd5af5c95d05d04 (patch) | |
tree | e2c4506a61448770d616f8fd3caa43674258a36f /drivers/ata | |
parent | 9c2fd3fb43bdf2641093fe287d1944ec3c88eeda (diff) |
ata: pata_cs5535: add compile test support
Add Kconfig dependendy on X86_64 && COMPILE_TEST to allow compile tests
with configs that do not have X86_32 enabled on X86_64 hosts.
Signed-off-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Diffstat (limited to 'drivers/ata')
-rw-r--r-- | drivers/ata/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 8e211b21f48f..2c381c59357b 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -637,7 +637,7 @@ config PATA_CS5530 config PATA_CS5535 tristate "CS5535 PATA support (Experimental)" - depends on PCI && X86_32 + depends on PCI && (X86_32 || (X86_64 && COMPILE_TEST)) help This option enables support for the NatSemi/AMD CS5535 companion chip used with the Geode processor family. |