diff options
author | Olof Johansson <olof@lixom.net> | 2018-06-26 10:42:31 -0700 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2018-06-26 10:42:31 -0700 |
commit | fd28b4b5fb811cb39b6dc77e3e63169dbf4819b9 (patch) | |
tree | 2abb9dc64906d2fa19111de7de65bf6715d97d57 /drivers | |
parent | 975ba94c2c3aca4d9f1ae26f3916d7787495ce86 (diff) | |
parent | 0ea3fa15b12739c5455cd5850ada4e9948171213 (diff) |
Merge tag 'qcom-fixes-for-4.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux into fixes
Qualcomm Fixes for v4.18-rc2
* Fix compiler warnings for cmd-db driver
* tag 'qcom-fixes-for-4.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/agross/linux:
qcom: cmd-db: enforce CONFIG_OF_RESERVED_MEM dependency
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/soc/qcom/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig index 9dc02f390ba3..5856e792d09c 100644 --- a/drivers/soc/qcom/Kconfig +++ b/drivers/soc/qcom/Kconfig @@ -5,7 +5,8 @@ menu "Qualcomm SoC drivers" config QCOM_COMMAND_DB bool "Qualcomm Command DB" - depends on (ARCH_QCOM && OF) || COMPILE_TEST + depends on ARCH_QCOM || COMPILE_TEST + depends on OF_RESERVED_MEM help Command DB queries shared memory by key string for shared system resources. Platform drivers that require to set state of a shared |