2017-07-26 15:27:29

by Srinivas Kandagatla

[permalink] [raw]
Subject: [PATCH] soc: qcom: bring all qcom drivers into a submenu

From: Srinivas Kandagatla <[email protected]>

As the number of qcom drivers increase, entries in SOC menu looks
scattered with other SOC drivers. Make a submenu for Qcom drivers
to make it visibly clear while selecting qcom SOC specific drivers.

Signed-off-by: Srinivas Kandagatla <[email protected]>
---
drivers/soc/qcom/Kconfig | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig
index d0fc331..084789b 100644
--- a/drivers/soc/qcom/Kconfig
+++ b/drivers/soc/qcom/Kconfig
@@ -1,6 +1,8 @@
#
# QCOM Soc drivers
#
+menu "Qualcomm SoC drivers"
+
config QCOM_GLINK_SSR
tristate "Qualcomm Glink SSR driver"
depends on RPMSG
@@ -83,3 +85,4 @@ config QCOM_WCNSS_CTRL
help
Client driver for the WCNSS_CTRL SMD channel, used to download nv
firmware to a newly booted WCNSS chip.
+endmenu
--
2.9.3


2017-07-27 16:37:21

by Andy Gross

[permalink] [raw]
Subject: Re: [PATCH] soc: qcom: bring all qcom drivers into a submenu

On Wed, Jul 26, 2017 at 05:27:16PM +0200, [email protected] wrote:
> From: Srinivas Kandagatla <[email protected]>
>
> As the number of qcom drivers increase, entries in SOC menu looks
> scattered with other SOC drivers. Make a submenu for Qcom drivers
> to make it visibly clear while selecting qcom SOC specific drivers.
>
> Signed-off-by: Srinivas Kandagatla <[email protected]>

Thanks for this patch. This makes things much nicer.

Andy