Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1276348 > unrolled thread
| Started by | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| First post | 2015-11-24 12:50 +0100 |
| Last post | 2015-11-24 12:50 +0100 |
| Articles | 6 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 0/3] pinctrl: use CONFIG_PINCTRL_* to gurad subdirectories Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-24 12:50 +0100
[PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-24 12:50 +0100
Re: [PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN Jisheng Zhang <jszhang@marvell.com> - 2015-11-24 13:10 +0100
Re: [PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> - 2015-11-28 12:30 +0100
[PATCH 2/3] pinctrl: mvebu: guard sub-directory with CONFIG_PINCTRL_MVEBU Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-24 12:50 +0100
[PATCH 3/3] pinctrl: spear: guard sub-directory with CONFIG_PINCTRL_SPEAR Masahiro Yamada <yamada.masahiro@socionext.com> - 2015-11-24 12:50 +0100
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-24 12:50 +0100 |
| Subject | [PATCH 0/3] pinctrl: use CONFIG_PINCTRL_* to gurad subdirectories |
| Message-ID | <qykgF-7yT-3@gated-at.bofh.it> |
Masahiro Yamada (3): pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN pinctrl: mvebu: guard sub-directory with CONFIG_PINCTRL_MVEBU pinctrl: spear: guard sub-directory with CONFIG_PINCTRL_SPEAR drivers/pinctrl/Makefile | 6 +++--- drivers/pinctrl/berlin/Makefile | 2 +- drivers/pinctrl/mvebu/Makefile | 2 +- drivers/pinctrl/spear/Makefile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-24 12:50 +0100 |
| Subject | [PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN |
| Message-ID | <qykgG-7yT-7@gated-at.bofh.it> |
| In reply to | #1276348 |
CONFIG_PINCTRL_BERLIN is more suitable than CONFIG_ARCH_BERLIN to guard the drivers/pinctrl/berlin/ directory. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/pinctrl/Makefile | 2 +- drivers/pinctrl/berlin/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index 738cb49..17c0206 100644 --- a/drivers/pinctrl/Makefile +++ b/drivers/pinctrl/Makefile @@ -41,7 +41,7 @@ obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o obj-$(CONFIG_PINCTRL_ZYNQ) += pinctrl-zynq.o obj-$(CONFIG_ARCH_BCM) += bcm/ -obj-$(CONFIG_ARCH_BERLIN) += berlin/ +obj-$(CONFIG_PINCTRL_BERLIN) += berlin/ obj-y += freescale/ obj-$(CONFIG_X86) += intel/ obj-$(CONFIG_PLAT_ORION) += mvebu/ diff --git a/drivers/pinctrl/berlin/Makefile b/drivers/pinctrl/berlin/Makefile index 06f9402..6f641ce 100644 --- a/drivers/pinctrl/berlin/Makefile +++ b/drivers/pinctrl/berlin/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_PINCTRL_BERLIN) += berlin.o +obj-y += berlin.o obj-$(CONFIG_PINCTRL_BERLIN_BG2) += berlin-bg2.o obj-$(CONFIG_PINCTRL_BERLIN_BG2CD) += berlin-bg2cd.o obj-$(CONFIG_PINCTRL_BERLIN_BG2Q) += berlin-bg2q.o -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Jisheng Zhang <jszhang@marvell.com> |
|---|---|
| Date | 2015-11-24 13:10 +0100 |
| Subject | Re: [PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN |
| Message-ID | <qykA2-7Vh-29@gated-at.bofh.it> |
| In reply to | #1276349 |
On Tue, 24 Nov 2015 20:45:22 +0900 Masahiro Yamada wrote: > CONFIG_PINCTRL_BERLIN is more suitable than CONFIG_ARCH_BERLIN > to guard the drivers/pinctrl/berlin/ directory. > > Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> I'm not maintainers, but this patch looks good to me. So if you need, Acked-by: Jisheng Zhang <jszhang@marvell.com> > --- > > drivers/pinctrl/Makefile | 2 +- > drivers/pinctrl/berlin/Makefile | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile > index 738cb49..17c0206 100644 > --- a/drivers/pinctrl/Makefile > +++ b/drivers/pinctrl/Makefile > @@ -41,7 +41,7 @@ obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o > obj-$(CONFIG_PINCTRL_ZYNQ) += pinctrl-zynq.o > > obj-$(CONFIG_ARCH_BCM) += bcm/ > -obj-$(CONFIG_ARCH_BERLIN) += berlin/ > +obj-$(CONFIG_PINCTRL_BERLIN) += berlin/ > obj-y += freescale/ > obj-$(CONFIG_X86) += intel/ > obj-$(CONFIG_PLAT_ORION) += mvebu/ > diff --git a/drivers/pinctrl/berlin/Makefile b/drivers/pinctrl/berlin/Makefile > index 06f9402..6f641ce 100644 > --- a/drivers/pinctrl/berlin/Makefile > +++ b/drivers/pinctrl/berlin/Makefile > @@ -1,4 +1,4 @@ > -obj-$(CONFIG_PINCTRL_BERLIN) += berlin.o > +obj-y += berlin.o > obj-$(CONFIG_PINCTRL_BERLIN_BG2) += berlin-bg2.o > obj-$(CONFIG_PINCTRL_BERLIN_BG2CD) += berlin-bg2cd.o > obj-$(CONFIG_PINCTRL_BERLIN_BG2Q) += berlin-bg2q.o -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> |
|---|---|
| Date | 2015-11-28 12:30 +0100 |
| Subject | Re: [PATCH 1/3] pinctrl: berlin: guard sub-directory with CONFIG_PINCTRL_BERLIN |
| Message-ID | <qzLRv-8fy-9@gated-at.bofh.it> |
| In reply to | #1276371 |
On 24.11.2015 13:02, Jisheng Zhang wrote: > On Tue, 24 Nov 2015 20:45:22 +0900 > Masahiro Yamada wrote: > >> CONFIG_PINCTRL_BERLIN is more suitable than CONFIG_ARCH_BERLIN >> to guard the drivers/pinctrl/berlin/ directory. >> >> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> > > I'm not maintainers, but this patch looks good to me. So if you need, > > Acked-by: Jisheng Zhang <jszhang@marvell.com> And here comes the maintainer's Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Thanks! >> --- >> >> drivers/pinctrl/Makefile | 2 +- >> drivers/pinctrl/berlin/Makefile | 2 +- >> 2 files changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile >> index 738cb49..17c0206 100644 >> --- a/drivers/pinctrl/Makefile >> +++ b/drivers/pinctrl/Makefile >> @@ -41,7 +41,7 @@ obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o >> obj-$(CONFIG_PINCTRL_ZYNQ) += pinctrl-zynq.o >> >> obj-$(CONFIG_ARCH_BCM) += bcm/ >> -obj-$(CONFIG_ARCH_BERLIN) += berlin/ >> +obj-$(CONFIG_PINCTRL_BERLIN) += berlin/ >> obj-y += freescale/ >> obj-$(CONFIG_X86) += intel/ >> obj-$(CONFIG_PLAT_ORION) += mvebu/ >> diff --git a/drivers/pinctrl/berlin/Makefile b/drivers/pinctrl/berlin/Makefile >> index 06f9402..6f641ce 100644 >> --- a/drivers/pinctrl/berlin/Makefile >> +++ b/drivers/pinctrl/berlin/Makefile >> @@ -1,4 +1,4 @@ >> -obj-$(CONFIG_PINCTRL_BERLIN) += berlin.o >> +obj-y += berlin.o >> obj-$(CONFIG_PINCTRL_BERLIN_BG2) += berlin-bg2.o >> obj-$(CONFIG_PINCTRL_BERLIN_BG2CD) += berlin-bg2cd.o >> obj-$(CONFIG_PINCTRL_BERLIN_BG2Q) += berlin-bg2q.o > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-24 12:50 +0100 |
| Subject | [PATCH 2/3] pinctrl: mvebu: guard sub-directory with CONFIG_PINCTRL_MVEBU |
| Message-ID | <qykgG-7yT-9@gated-at.bofh.it> |
| In reply to | #1276348 |
CONFIG_PINCTRL_MVEBU is more suitable than CONFIG_PLAT_ORION to guard the drivers/pinctrl/mvebu/ directory. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/pinctrl/Makefile | 2 +- drivers/pinctrl/mvebu/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index 17c0206..cdc4a61 100644 --- a/drivers/pinctrl/Makefile +++ b/drivers/pinctrl/Makefile @@ -44,7 +44,7 @@ obj-$(CONFIG_ARCH_BCM) += bcm/ obj-$(CONFIG_PINCTRL_BERLIN) += berlin/ obj-y += freescale/ obj-$(CONFIG_X86) += intel/ -obj-$(CONFIG_PLAT_ORION) += mvebu/ +obj-$(CONFIG_PINCTRL_MVEBU) += mvebu/ obj-y += nomadik/ obj-$(CONFIG_ARCH_QCOM) += qcom/ obj-$(CONFIG_PINCTRL_SAMSUNG) += samsung/ diff --git a/drivers/pinctrl/mvebu/Makefile b/drivers/pinctrl/mvebu/Makefile index 554d8af..18270cd 100644 --- a/drivers/pinctrl/mvebu/Makefile +++ b/drivers/pinctrl/mvebu/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_PINCTRL_MVEBU) += pinctrl-mvebu.o +obj-y += pinctrl-mvebu.o obj-$(CONFIG_PINCTRL_DOVE) += pinctrl-dove.o obj-$(CONFIG_PINCTRL_KIRKWOOD) += pinctrl-kirkwood.o obj-$(CONFIG_PINCTRL_ARMADA_370) += pinctrl-armada-370.o -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Masahiro Yamada <yamada.masahiro@socionext.com> |
|---|---|
| Date | 2015-11-24 12:50 +0100 |
| Subject | [PATCH 3/3] pinctrl: spear: guard sub-directory with CONFIG_PINCTRL_SPEAR |
| Message-ID | <qykgG-7yT-25@gated-at.bofh.it> |
| In reply to | #1276348 |
CONFIG_PINCTRL_SPEAR is more suitable than CONFIG_PLAT_SPEAR to guard the drivers/pinctrl/spear/ directory. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> --- drivers/pinctrl/Makefile | 2 +- drivers/pinctrl/spear/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index cdc4a61..22a02f3 100644 --- a/drivers/pinctrl/Makefile +++ b/drivers/pinctrl/Makefile @@ -49,7 +49,7 @@ obj-y += nomadik/ obj-$(CONFIG_ARCH_QCOM) += qcom/ obj-$(CONFIG_PINCTRL_SAMSUNG) += samsung/ obj-$(CONFIG_PINCTRL_SH_PFC) += sh-pfc/ -obj-$(CONFIG_PLAT_SPEAR) += spear/ +obj-$(CONFIG_PINCTRL_SPEAR) += spear/ obj-$(CONFIG_ARCH_SUNXI) += sunxi/ obj-$(CONFIG_PINCTRL_UNIPHIER) += uniphier/ obj-$(CONFIG_ARCH_VT8500) += vt8500/ diff --git a/drivers/pinctrl/spear/Makefile b/drivers/pinctrl/spear/Makefile index 0e400eb..37b8412 100644 --- a/drivers/pinctrl/spear/Makefile +++ b/drivers/pinctrl/spear/Makefile @@ -1,7 +1,7 @@ # SPEAr pinmux support obj-$(CONFIG_PINCTRL_SPEAR_PLGPIO) += pinctrl-plgpio.o -obj-$(CONFIG_PINCTRL_SPEAR) += pinctrl-spear.o +obj-y += pinctrl-spear.o obj-$(CONFIG_PINCTRL_SPEAR3XX) += pinctrl-spear3xx.o obj-$(CONFIG_PINCTRL_SPEAR300) += pinctrl-spear300.o obj-$(CONFIG_PINCTRL_SPEAR310) += pinctrl-spear310.o -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web