diff options
author | Cai Huoqing <caihuoqing@baidu.com> | 2021-11-09 12:55:20 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2021-11-15 08:29:48 +0000 |
commit | 5efe5721c18c326036ca71bec4fb56472e1f9350 (patch) | |
tree | 8ac286d47052ed9f000dca353509f0eb24942d39 /drivers/media/rc | |
parent | 99076cd117c4cb51c684c066fb6bb85e23cb0624 (diff) | |
download | linux-5efe5721c18c326036ca71bec4fb56472e1f9350.tar.gz linux-5efe5721c18c326036ca71bec4fb56472e1f9350.tar.bz2 linux-5efe5721c18c326036ca71bec4fb56472e1f9350.zip |
media: rc: ir-hix5hd2: Add the dependency on HAS_IOMEM
The helper function devm_platform_ioremap_resource()
needs HAS_IOMEM enabled, so add the dependency on HAS_IOMEM.
Signed-off-by: Cai Huoqing <caihuoqing@baidu.com>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'drivers/media/rc')
-rw-r--r-- | drivers/media/rc/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/rc/Kconfig b/drivers/media/rc/Kconfig index 9506baf3c4c1..c111af820ae4 100644 --- a/drivers/media/rc/Kconfig +++ b/drivers/media/rc/Kconfig @@ -175,7 +175,7 @@ config IR_ENE config IR_HIX5HD2 tristate "Hisilicon hix5hd2 IR remote control" - depends on OF || COMPILE_TEST + depends on (OF && HAS_IOMEM) || COMPILE_TEST help Say Y here if you want to use hisilicon hix5hd2 remote control. To compile this driver as a module, choose M here: the module will be |