power: avs: qcom-cpr: add unspecified HAS_IOMEM dependency

Currently CONFIG_QCOM_CPR=y implicitly depends on CONFIG_HAS_IOMEM=y;
consequently, on architectures without IOMEM we get the following build
error:

/usr/bin/ld: drivers/power/avs/qcom-cpr.o: in function `cpr_probe':
drivers/power/avs/qcom-cpr.c:1690: undefined reference to `devm_ioremap_resource'

Fix the build error by adding the unspecified dependency.

Signed-off-by: Brendan Higgins <brendanhiggins@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
Brendan Higgins 2020-01-27 15:53:56 -08:00 committed by Rafael J. Wysocki
parent adef0cedea
commit db5a10c172
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ menuconfig POWER_AVS
config QCOM_CPR
tristate "QCOM Core Power Reduction (CPR) support"
depends on POWER_AVS
depends on POWER_AVS && HAS_IOMEM
select PM_OPP
select REGMAP
help