Message ID | 1398357082-5102-2-git-send-email-agross@codeaurora.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thursday 24 April 2014 12:31 PM, Andy Gross wrote: > Add placeholder Kconfig and linkage for driver/soc. > > The first patch set that implemented this was authored by Santosh Shilimkar: > https://lkml.org/lkml/2014/2/28/567 > > Signed-off-by: Andy Gross <agross@codeaurora.org> > --- Good to see these patches on the list. Me and Kumar spoke about it many times before. BTW, I just posted updated version. Feel free to use the from it instead of 4subject one. Regards, Santosh
On Apr 24, 2014, at 9:36 AM, Santosh Shilimkar <santosh.shilimkar@ti.com> wrote: > On Thursday 24 April 2014 12:31 PM, Andy Gross wrote: >> Add placeholder Kconfig and linkage for driver/soc. >> >> The first patch set that implemented this was authored by Santosh Shilimkar: >> https://lkml.org/lkml/2014/2/28/567 >> >> Signed-off-by: Andy Gross <agross@codeaurora.org> >> --- > Good to see these patches on the list. Me and Kumar spoke about it > many times before. > > BTW, I just posted updated version. Feel free to use the from it instead > of 4subject one. > > Regards, > Santosh > -- > To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html Paul, Did you have any other thoughts on this, do we want to add more to Santosh’s patch w/regards to comments or MAINTAINERs? - k
diff --git a/drivers/Kconfig b/drivers/Kconfig index b3138fb..37f955f 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -130,6 +130,8 @@ source "drivers/staging/Kconfig" source "drivers/platform/Kconfig" +source "drivers/soc/Kconfig" + source "drivers/clk/Kconfig" source "drivers/hwspinlock/Kconfig" diff --git a/drivers/Makefile b/drivers/Makefile index 8e3b8b0..ba77e7b 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -132,6 +132,10 @@ obj-$(CONFIG_VHOST_RING) += vhost/ obj-$(CONFIG_VLYNQ) += vlynq/ obj-$(CONFIG_STAGING) += staging/ obj-y += platform/ + +# soc specific drivers +obj-y += soc/ + #common clk code obj-y += clk/ diff --git a/drivers/soc/Kconfig b/drivers/soc/Kconfig new file mode 100644 index 0000000..58bd962 --- /dev/null +++ b/drivers/soc/Kconfig @@ -0,0 +1,4 @@ +menu "SOC specific Drivers" + +endmenu +`
Add placeholder Kconfig and linkage for driver/soc. The first patch set that implemented this was authored by Santosh Shilimkar: https://lkml.org/lkml/2014/2/28/567 Signed-off-by: Andy Gross <agross@codeaurora.org> --- drivers/Kconfig | 2 ++ drivers/Makefile | 4 ++++ drivers/soc/Kconfig | 4 ++++ 3 files changed, 10 insertions(+) create mode 100644 drivers/soc/Kconfig