mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 17:51:43 +00:00
d719b76c13
IRQ_DOMAIN is a hidden config option, so depending on it doesn't make any sense. Select the config option because it's required to compile this driver. Signed-off-by: Stephen Boyd <sboyd@codeaurora.org> Reviewed-by: Andy Gross <agross@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
28 lines
710 B
Plaintext
28 lines
710 B
Plaintext
#
|
|
# SPMI driver configuration
|
|
#
|
|
menuconfig SPMI
|
|
tristate "SPMI support"
|
|
help
|
|
SPMI (System Power Management Interface) is a two-wire
|
|
serial interface between baseband and application processors
|
|
and Power Management Integrated Circuits (PMIC).
|
|
|
|
if SPMI
|
|
|
|
config SPMI_MSM_PMIC_ARB
|
|
tristate "Qualcomm MSM SPMI Controller (PMIC Arbiter)"
|
|
select IRQ_DOMAIN
|
|
depends on ARCH_QCOM || COMPILE_TEST
|
|
depends on HAS_IOMEM
|
|
default ARCH_QCOM
|
|
help
|
|
If you say yes to this option, support will be included for the
|
|
built-in SPMI PMIC Arbiter interface on Qualcomm MSM family
|
|
processors.
|
|
|
|
This is required for communicating with Qualcomm PMICs and
|
|
other devices that have the SPMI interface.
|
|
|
|
endif
|