* [PATCH 0/4] MAINTAINERS: update BCM SoC entries
@ 2016-06-20 21:07 Jon Mason
2016-06-20 21:07 ` [PATCH 1/4] MAINTAINERS: Fix nsp false-positives Jon Mason
` (4 more replies)
0 siblings, 5 replies; 11+ messages in thread
From: Jon Mason @ 2016-06-20 21:07 UTC (permalink / raw)
To: linux-arm-kernel
An overall clean-up to the MAINTAINER entries for a few Broadcom SoCs.
Jon Mason (4):
MAINTAINERS: Fix nsp false-positives
MAINTAINERS: Add NS2 entry
MAINTAINERS: Update BCM63XX entry
MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
MAINTAINERS | 19 +++++++++----------
1 file changed, 9 insertions(+), 10 deletions(-)
--
1.9.1
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/4] MAINTAINERS: Fix nsp false-positives
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
@ 2016-06-20 21:07 ` Jon Mason
2016-06-20 21:07 ` [PATCH 2/4] MAINTAINERS: Add NS2 entry Jon Mason
` (3 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: Jon Mason @ 2016-06-20 21:07 UTC (permalink / raw)
To: linux-arm-kernel
The 'nsp' regex pattern in the "BROADCOM IPROC ARM ARCHITECTURE" section
is getting unintended hits due to the common frequence of these letters
appearing in sequence. To change the regex expression to be more
specific to the files we care about, add a "bcm" prefix to the regex and
add file entries for those that do not naturally match this new regex.
Signed-off-by: Jon Mason <jon.mason@broadcom.com>
---
MAINTAINERS | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 7304d2e..18b235a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2601,7 +2601,7 @@ T: git git://github.com/broadcom/cygnus-linux.git
S: Maintained
N: iproc
N: cygnus
-N: nsp
+N: bcm[-_]nsp
N: bcm9113*
N: bcm9583*
N: bcm9585*
@@ -2612,6 +2612,8 @@ N: bcm583*
N: bcm585*
N: bcm586*
N: bcm88312
+F: drivers/clk/bcm/clk-ns*
+F: drivers/pinctrl/bcm/pinctrl-ns*
BROADCOM BRCMSTB GPIO DRIVER
M: Gregory Fong <gregory.0xf0@gmail.com>
--
1.9.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/4] MAINTAINERS: Add NS2 entry
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
2016-06-20 21:07 ` [PATCH 1/4] MAINTAINERS: Fix nsp false-positives Jon Mason
@ 2016-06-20 21:07 ` Jon Mason
2016-06-20 21:07 ` [PATCH 3/4] MAINTAINERS: Update BCM63XX entry Jon Mason
` (2 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: Jon Mason @ 2016-06-20 21:07 UTC (permalink / raw)
To: linux-arm-kernel
Add NS2 to the Broadcom iProc Subsystem maintainers entry. Since most
of the NS2 entries are already covered via the ns* already present
there, all that is currently needed is to reference the device tree
files.
Signed-off-by: Jon Mason <jon.mason@broadcom.com>
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 18b235a..81be402 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2612,6 +2612,7 @@ N: bcm583*
N: bcm585*
N: bcm586*
N: bcm88312
+F: arch/arm64/boot/dts/broadcom/ns2*
F: drivers/clk/bcm/clk-ns*
F: drivers/pinctrl/bcm/pinctrl-ns*
--
1.9.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/4] MAINTAINERS: Update BCM63XX entry
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
2016-06-20 21:07 ` [PATCH 1/4] MAINTAINERS: Fix nsp false-positives Jon Mason
2016-06-20 21:07 ` [PATCH 2/4] MAINTAINERS: Add NS2 entry Jon Mason
@ 2016-06-20 21:07 ` Jon Mason
2016-06-20 21:07 ` [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry Jon Mason
2016-06-20 21:14 ` [PATCH 0/4] MAINTAINERS: update BCM SoC entries Scott Branden
4 siblings, 0 replies; 11+ messages in thread
From: Jon Mason @ 2016-06-20 21:07 UTC (permalink / raw)
To: linux-arm-kernel
There are more files being supported by the BCM63XX than simply
"arch/arm/mach-bcm/bcm63xx.c" and "arch/arm/include/debug/bcm63xx.S".
Add a regex of "bcm63xx" to catch all the other files that are out
there.
Signed-off-by: Jon Mason <jon.mason@broadcom.com>
---
MAINTAINERS | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 81be402..28a35f4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2523,8 +2523,7 @@ L: linux-arm-kernel at lists.infradead.org (moderated for non-subscribers)
L: bcm-kernel-feedback-list at broadcom.com
T: git git://github.com/broadcom/stblinux.git
S: Maintained
-F: arch/arm/mach-bcm/bcm63xx.c
-F: arch/arm/include/debug/bcm63xx.S
+N: bcm63xx
BROADCOM BCM63XX/BCM33XX UDC DRIVER
M: Kevin Cernekee <cernekee@gmail.com>
--
1.9.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
` (2 preceding siblings ...)
2016-06-20 21:07 ` [PATCH 3/4] MAINTAINERS: Update BCM63XX entry Jon Mason
@ 2016-06-20 21:07 ` Jon Mason
2016-06-20 21:35 ` Chris Brand
2016-06-20 21:14 ` [PATCH 0/4] MAINTAINERS: update BCM SoC entries Scott Branden
4 siblings, 1 reply; 11+ messages in thread
From: Jon Mason @ 2016-06-20 21:07 UTC (permalink / raw)
To: linux-arm-kernel
There are many clock, pinctl, and misc others that should be covered
under the BCM281XX/BCM11XXX/BCM216XX ARM listing. Change the entry to
use regex's that should cover all the files.
Also, remove the bcm_defconfig entry (as the file is being removed), and
arch/arm64/boot/dts/broadcom reference (as that is not accurate for this
group of maintainers and all the device trees under it should now be
covered by other maintainer entries).
Signed-off-by: Jon Mason <jon.mason@broadcom.com>
---
MAINTAINERS | 11 ++++-------
1 file changed, 4 insertions(+), 7 deletions(-)
diff --git a/MAINTAINERS b/MAINTAINERS
index 28a35f4..01382ce 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2481,14 +2481,11 @@ M: Scott Branden <sbranden@broadcom.com>
L: bcm-kernel-feedback-list at broadcom.com
T: git git://github.com/broadcom/mach-bcm
S: Maintained
+N: bcm281*
+N: bcm113*
+N: bcm216*
+N: kona
F: arch/arm/mach-bcm/
-F: arch/arm/boot/dts/bcm113*
-F: arch/arm/boot/dts/bcm216*
-F: arch/arm/boot/dts/bcm281*
-F: arch/arm64/boot/dts/broadcom/
-F: arch/arm/configs/bcm_defconfig
-F: drivers/mmc/host/sdhci-bcm-kona.c
-F: drivers/clocksource/bcm_kona_timer.c
BROADCOM BCM2835 ARM ARCHITECTURE
M: Stephen Warren <swarren@wwwdotorg.org>
--
1.9.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 0/4] MAINTAINERS: update BCM SoC entries
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
` (3 preceding siblings ...)
2016-06-20 21:07 ` [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry Jon Mason
@ 2016-06-20 21:14 ` Scott Branden
2016-07-05 23:27 ` Florian Fainelli
4 siblings, 1 reply; 11+ messages in thread
From: Scott Branden @ 2016-06-20 21:14 UTC (permalink / raw)
To: linux-arm-kernel
Patch series looks good.
Acked-by: Scott Branden <scott.branden@broadcom.com>
On 16-06-20 02:07 PM, Jon Mason wrote:
> An overall clean-up to the MAINTAINER entries for a few Broadcom SoCs.
>
> Jon Mason (4):
> MAINTAINERS: Fix nsp false-positives
> MAINTAINERS: Add NS2 entry
> MAINTAINERS: Update BCM63XX entry
> MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
>
> MAINTAINERS | 19 +++++++++----------
> 1 file changed, 9 insertions(+), 10 deletions(-)
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
2016-06-20 21:07 ` [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry Jon Mason
@ 2016-06-20 21:35 ` Chris Brand
2016-06-21 14:34 ` Jon Mason
0 siblings, 1 reply; 11+ messages in thread
From: Chris Brand @ 2016-06-20 21:35 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Jun 20, 2016 at 2:07 PM, Jon Mason <jon.mason@broadcom.com> wrote:
> There are many clock, pinctl, and misc others that should be covered
> under the BCM281XX/BCM11XXX/BCM216XX ARM listing. Change the entry to
> use regex's that should cover all the files.
>
> Also, remove the bcm_defconfig entry (as the file is being removed), and
> arch/arm64/boot/dts/broadcom reference (as that is not accurate for this
> group of maintainers and all the device trees under it should now be
> covered by other maintainer entries).
>
> Signed-off-by: Jon Mason <jon.mason@broadcom.com>
> ---
> MAINTAINERS | 11 ++++-------
> 1 file changed, 4 insertions(+), 7 deletions(-)
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 28a35f4..01382ce 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -2481,14 +2481,11 @@ M: Scott Branden <sbranden@broadcom.com>
> L: bcm-kernel-feedback-list at broadcom.com
> T: git git://github.com/broadcom/mach-bcm
> S: Maintained
> +N: bcm281*
> +N: bcm113*
> +N: bcm216*
> +N: kona
Hmmm. We should probably add bcm23550 here, too.
> F: arch/arm/mach-bcm/
> -F: arch/arm/boot/dts/bcm113*
> -F: arch/arm/boot/dts/bcm216*
> -F: arch/arm/boot/dts/bcm281*
> -F: arch/arm64/boot/dts/broadcom/
> -F: arch/arm/configs/bcm_defconfig
> -F: drivers/mmc/host/sdhci-bcm-kona.c
> -F: drivers/clocksource/bcm_kona_timer.c
>
> BROADCOM BCM2835 ARM ARCHITECTURE
> M: Stephen Warren <swarren@wwwdotorg.org>
Chris
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
2016-06-20 21:35 ` Chris Brand
@ 2016-06-21 14:34 ` Jon Mason
2016-06-21 16:07 ` Chris Brand
0 siblings, 1 reply; 11+ messages in thread
From: Jon Mason @ 2016-06-21 14:34 UTC (permalink / raw)
To: linux-arm-kernel
On Mon, Jun 20, 2016 at 5:35 PM, Chris Brand <chris.brand@broadcom.com> wrote:
> On Mon, Jun 20, 2016 at 2:07 PM, Jon Mason <jon.mason@broadcom.com> wrote:
>> There are many clock, pinctl, and misc others that should be covered
>> under the BCM281XX/BCM11XXX/BCM216XX ARM listing. Change the entry to
>> use regex's that should cover all the files.
>>
>> Also, remove the bcm_defconfig entry (as the file is being removed), and
>> arch/arm64/boot/dts/broadcom reference (as that is not accurate for this
>> group of maintainers and all the device trees under it should now be
>> covered by other maintainer entries).
>>
>> Signed-off-by: Jon Mason <jon.mason@broadcom.com>
>> ---
>> MAINTAINERS | 11 ++++-------
>> 1 file changed, 4 insertions(+), 7 deletions(-)
>>
>> diff --git a/MAINTAINERS b/MAINTAINERS
>> index 28a35f4..01382ce 100644
>> --- a/MAINTAINERS
>> +++ b/MAINTAINERS
>> @@ -2481,14 +2481,11 @@ M: Scott Branden <sbranden@broadcom.com>
>> L: bcm-kernel-feedback-list at broadcom.com
>> T: git git://github.com/broadcom/mach-bcm
>> S: Maintained
>> +N: bcm281*
>> +N: bcm113*
>> +N: bcm216*
>> +N: kona
>
> Hmmm. We should probably add bcm23550 here, too.
Sure, I'll be happy to ammend this patch to add "N: bcm23550",
which appears to cover all of the newly added files. Also, does it
make sense to add you to the list of maintainers above?
Thanks,
Jon
>> F: arch/arm/mach-bcm/
>> -F: arch/arm/boot/dts/bcm113*
>> -F: arch/arm/boot/dts/bcm216*
>> -F: arch/arm/boot/dts/bcm281*
>> -F: arch/arm64/boot/dts/broadcom/
>> -F: arch/arm/configs/bcm_defconfig
>> -F: drivers/mmc/host/sdhci-bcm-kona.c
>> -F: drivers/clocksource/bcm_kona_timer.c
>>
>> BROADCOM BCM2835 ARM ARCHITECTURE
>> M: Stephen Warren <swarren@wwwdotorg.org>
>
> Chris
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
2016-06-21 14:34 ` Jon Mason
@ 2016-06-21 16:07 ` Chris Brand
2016-06-23 2:54 ` Florian Fainelli
0 siblings, 1 reply; 11+ messages in thread
From: Chris Brand @ 2016-06-21 16:07 UTC (permalink / raw)
To: linux-arm-kernel
On Tue, Jun 21, 2016 at 7:34 AM, Jon Mason <jon.mason@broadcom.com> wrote:
[snip]
>>
>> Hmmm. We should probably add bcm23550 here, too.
>
> Sure, I'll be happy to ammend this patch to add "N: bcm23550",
> which appears to cover all of the newly added files. Also, does it
> make sense to add you to the list of maintainers above?
I guess so, yes.
Chris
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry
2016-06-21 16:07 ` Chris Brand
@ 2016-06-23 2:54 ` Florian Fainelli
0 siblings, 0 replies; 11+ messages in thread
From: Florian Fainelli @ 2016-06-23 2:54 UTC (permalink / raw)
To: linux-arm-kernel
Le 21/06/2016 09:07, Chris Brand a ?crit :
> On Tue, Jun 21, 2016 at 7:34 AM, Jon Mason <jon.mason@broadcom.com> wrote:
> [snip]
>>>
>>> Hmmm. We should probably add bcm23550 here, too.
>>
>> Sure, I'll be happy to ammend this patch to add "N: bcm23550",
>> which appears to cover all of the newly added files. Also, does it
>> make sense to add you to the list of maintainers above?
>
> I guess so, yes.
Do you have a specific email address that would you want to use?
--
Florian
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 0/4] MAINTAINERS: update BCM SoC entries
2016-06-20 21:14 ` [PATCH 0/4] MAINTAINERS: update BCM SoC entries Scott Branden
@ 2016-07-05 23:27 ` Florian Fainelli
0 siblings, 0 replies; 11+ messages in thread
From: Florian Fainelli @ 2016-07-05 23:27 UTC (permalink / raw)
To: linux-arm-kernel
On 06/20/2016 02:14 PM, Scott Branden wrote:
> Patch series looks good.
>
> Acked-by: Scott Branden <scott.branden@broadcom.com>
Series applied, thanks!
--
Florian
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-07-05 23:27 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-20 21:07 [PATCH 0/4] MAINTAINERS: update BCM SoC entries Jon Mason
2016-06-20 21:07 ` [PATCH 1/4] MAINTAINERS: Fix nsp false-positives Jon Mason
2016-06-20 21:07 ` [PATCH 2/4] MAINTAINERS: Add NS2 entry Jon Mason
2016-06-20 21:07 ` [PATCH 3/4] MAINTAINERS: Update BCM63XX entry Jon Mason
2016-06-20 21:07 ` [PATCH 4/4] MAINTAINERS: Update BCM281XX/BCM11XXX/BCM216XX entry Jon Mason
2016-06-20 21:35 ` Chris Brand
2016-06-21 14:34 ` Jon Mason
2016-06-21 16:07 ` Chris Brand
2016-06-23 2:54 ` Florian Fainelli
2016-06-20 21:14 ` [PATCH 0/4] MAINTAINERS: update BCM SoC entries Scott Branden
2016-07-05 23:27 ` Florian Fainelli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).