From: Arnd Bergmann Date: Fri, 4 Oct 2024 10:02:23 +0000 (+0000) Subject: media: cec: seco: add HAS_IOPORT dependency X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=cc23e3d69958a99d62321bb4d839b1f9df47952b;p=users%2Fjedix%2Flinux-maple.git media: cec: seco: add HAS_IOPORT dependency This driver is now enabled for compile-testing on architectures that may not have I/O port access: drivers/media/cec/platform/seco/seco-cec.c: In function 'smb_word_op.constprop.isra': include/asm-generic/io.h:542:14: error: call to '_inb' declared with attribute error: inb()) requires CONFIG_HAS_IOPORT Add a Kconfig dependency again. Signed-off-by: Arnd Bergmann Signed-off-by: Hans Verkuil --- diff --git a/drivers/media/cec/platform/Kconfig b/drivers/media/cec/platform/Kconfig index ede81fe331b0..e40413609f53 100644 --- a/drivers/media/cec/platform/Kconfig +++ b/drivers/media/cec/platform/Kconfig @@ -99,7 +99,7 @@ config CEC_TEGRA config CEC_SECO tristate "SECO Boards HDMI CEC driver" - depends on X86 || COMPILE_TEST + depends on X86 || (COMPILE_TEST && HAS_IOPORT) depends on PCI && DMI select CEC_CORE select CEC_NOTIFIER