diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-10-08 13:59:32 -0400 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-10-09 02:53:02 -0400 |
commit | 73bb7dc08edd921953f7b720b54e5dcb15ee0a02 (patch) | |
tree | 56c84cd48c7c087bc0fc1e58460b87c5adb0474c | |
parent | 9bc432cb242b0edff81e3ab83ba11c327cd4dd93 (diff) |
clk: qcom: Move gdsc config outside COMMON_CLK_QCOM config
Having this hidden config below the COMMON_CLK_QCOM config causes
menuconfig to stop indenting config items after it.
<*> Support for Qualcomm's clock controllers
{M} APQ8084 Global Clock Controller
<M> APQ8084 Multimedia Clock Controller
{M} IPQ806x Global Clock Controller
<M> IPQ806x LPASS Clock Controller
<M> MSM8660 Global Clock Controller
<M> MSM8916 Global Clock Controller
{M} APQ8064/MSM8960 Global Clock Controller
<M> APQ8064/MSM8960 LPASS Clock Controller
<M> MSM8960 Multimedia Clock Controller
{M} MSM8974 Global Clock Controller
<M> MSM8974 Multimedia Clock Controller
Move it up above anything else so that we don't get odd
indenting.
Cc: Rajendra Nayak <rnayak@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
-rw-r--r-- | drivers/clk/qcom/Kconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index 47b988f567e8..ee4c83aab4f4 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig | |||
@@ -1,3 +1,7 @@ | |||
1 | config QCOM_GDSC | ||
2 | bool | ||
3 | select PM_GENERIC_DOMAINS if PM | ||
4 | |||
1 | config COMMON_CLK_QCOM | 5 | config COMMON_CLK_QCOM |
2 | tristate "Support for Qualcomm's clock controllers" | 6 | tristate "Support for Qualcomm's clock controllers" |
3 | depends on OF | 7 | depends on OF |
@@ -41,10 +45,6 @@ config IPQ_LCC_806X | |||
41 | Say Y if you want to use audio devices such as i2s, pcm, | 45 | Say Y if you want to use audio devices such as i2s, pcm, |
42 | S/PDIF, etc. | 46 | S/PDIF, etc. |
43 | 47 | ||
44 | config QCOM_GDSC | ||
45 | bool | ||
46 | select PM_GENERIC_DOMAINS if PM | ||
47 | |||
48 | config MSM_GCC_8660 | 48 | config MSM_GCC_8660 |
49 | tristate "MSM8660 Global Clock Controller" | 49 | tristate "MSM8660 Global Clock Controller" |
50 | depends on COMMON_CLK_QCOM | 50 | depends on COMMON_CLK_QCOM |