diff options
author | Hector Martin <marcan@marcan.st> | 2021-12-15 12:27:54 +0100 |
---|---|---|
committer | Hector Martin <marcan@marcan.st> | 2021-12-15 12:36:05 +0100 |
commit | 8e136c5ea43ae08c5d672deb1c3f494782a4392a (patch) | |
tree | fca11347c9c72088e32daed035e1f4610e790ccc /drivers/soc/apple/Kconfig | |
parent | soc: apple: apple-pmgr-pwrstate: Add auto-PM min level support (diff) | |
download | linux-8e136c5ea43ae08c5d672deb1c3f494782a4392a.tar.xz linux-8e136c5ea43ae08c5d672deb1c3f494782a4392a.zip |
soc: apple: apple-pmgr-pwrstate: Do not build as a module
This doesn't make any sense as a module since it is a critical device,
and it turns out of_phandle_iterator_args was not exported so the module
version doesn't build anyway.
Fixes: 6df9d38f9146 ("soc: apple: Add driver for Apple PMGR power state controls")
Reported-by: kernel test robot <lkp@intel.com>
Reviewed-by: Sven Peter <sven@svenpeter.dev>
Signed-off-by: Hector Martin <marcan@marcan.st>
Diffstat (limited to 'drivers/soc/apple/Kconfig')
-rw-r--r-- | drivers/soc/apple/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/apple/Kconfig b/drivers/soc/apple/Kconfig index 3eb14abf8d33..9b8de31d6a8f 100644 --- a/drivers/soc/apple/Kconfig +++ b/drivers/soc/apple/Kconfig @@ -5,7 +5,7 @@ if ARCH_APPLE || COMPILE_TEST menu "Apple SoC drivers" config APPLE_PMGR_PWRSTATE - tristate "Apple SoC PMGR power state control" + bool "Apple SoC PMGR power state control" depends on PM select REGMAP select MFD_SYSCON |