diff options
author | 2024-11-04 14:22:17 +0100 | |
---|---|---|
committer | 2024-11-07 09:53:46 +0100 | |
commit | 9b50fe117d60f5109473ffab38368e191a7686d8 (patch) | |
tree | 81f7f4b9af345956dd2b4a35d6def64610c81e8a | |
parent | Merge tag 'counter-fixes-for-6.12' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/wbg/counter into char-misc-next (diff) | |
download | wireguard-linux-9b50fe117d60f5109473ffab38368e191a7686d8.tar.xz wireguard-linux-9b50fe117d60f5109473ffab38368e191a7686d8.zip |
misc: keba: Add hardware dependency
Only propose KEBA CP500 drivers on architectures where the device
exists, unless build-testing.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Cc: Gerhard Engleder <eg@keba.com>
Link: https://lore.kernel.org/r/20241104142217.1dad57cf@endymion.delvare
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/misc/keba/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/misc/keba/Kconfig b/drivers/misc/keba/Kconfig index 08c8970d8d58..d6d47197a963 100644 --- a/drivers/misc/keba/Kconfig +++ b/drivers/misc/keba/Kconfig @@ -1,6 +1,7 @@ # SPDX-License-Identifier: GPL-2.0 config KEBA_CP500 tristate "KEBA CP500 system FPGA support" + depends on X86_64 || ARM64 || COMPILE_TEST depends on PCI depends on I2C select AUXILIARY_BUS |