diff options
author | Riku Voipio <riku.voipio@linaro.org> | 2018-02-12 13:03:31 +0200 |
---|---|---|
committer | Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> | 2018-11-20 14:07:00 +0530 |
commit | 0f3537d2ba163e24ce368021b6f72a9ae6214091 (patch) | |
tree | 945cbf9992860ba5ac98e77ac75a1fcfb56d2f80 | |
parent | bb8abb5ccd0bc4fc7b3898b53f3843d264cbd80a (diff) | |
download | 96b-common-0f3537d2ba163e24ce368021b6f72a9ae6214091.tar.gz |
clk: enable hi655x common clk automatically
Without COMMON_CLK_HI655X Wifi and bluetooth are non-functional on Hikey.
As suggested by Arnd, enable the driver automatically when the parent driver
is selected. With sensible defaults in place, we can leave other choices for
EXPERT.
Cc: John Stultz <john.stultz@linaro.org>
Cc: Ulf Hansson <ulf.hansson@linaro.org>
Cc: Wei Xu <xuwei5@hisilicon.com>
Cc: Daniel Lezcano <daniel.lezcano@linaro.org>
Suggested-by: Arnd Bergmann <arnd@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
-rw-r--r-- | drivers/clk/Kconfig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/clk/Kconfig b/drivers/clk/Kconfig index 1c4e1aa6767e..a9a9e54c48fe 100644 --- a/drivers/clk/Kconfig +++ b/drivers/clk/Kconfig @@ -55,8 +55,10 @@ config COMMON_CLK_RK808 by control register. config COMMON_CLK_HI655X - tristate "Clock driver for Hi655x" - depends on MFD_HI655X_PMIC || COMPILE_TEST + tristate "Clock driver for Hi655x" if EXPERT + depends on (MFD_HI655X_PMIC || COMPILE_TEST) + depends on REGMAP + default MFD_HI655X_PMIC ---help--- This driver supports the hi655x PMIC clock. This multi-function device has one fixed-rate oscillator, clocked |