public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
@ 2024-09-13 11:50 Lukas Bulwahn
  2024-09-13 12:24 ` Arnd Bergmann
  0 siblings, 1 reply; 6+ messages in thread
From: Lukas Bulwahn @ 2024-09-13 11:50 UTC (permalink / raw)
  To: Lukasz Majewski, Nikita Shubin, Hartley Sweeten,
	Alexander Sverdlin, Arnd Bergmann
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1680 bytes --]

From: Lukas Bulwahn <lukas.bulwahn@redhat.com>

Commit 3e0bae7f35c9 ("ARM: ep93xx: delete all boardfiles") removes
ts72xx.c, but misses to adjust the ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
section, which is referring to this file. Hence,
./scripts/get_maintainer.pl --self-test=patterns complains about a broken
reference.

As the corresponding file of this section is gone, remove the whole section
and note this previous contribution in the CREDITS instead.

Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
---
Arnd, please pick this quick administration fix on top of the commit
above. Thanks.

 CREDITS     | 4 ++++
 MAINTAINERS | 6 ------
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/CREDITS b/CREDITS
index d439f5a1bc00..b2f16d191f3c 100644
--- a/CREDITS
+++ b/CREDITS
@@ -2539,6 +2539,10 @@ S: PO BOX 220, HFX. CENTRAL
 S: Halifax, Nova Scotia
 S: Canada B3J 3C8
 
+N: Lukasz Majewski
+E: lukma@denx.de
+D: arm/Cirrus Logic BK3 machine support
+
 N: Kai Mäkisara
 E: Kai.Makisara@kolumbus.fi
 D: SCSI Tape Driver
diff --git a/MAINTAINERS b/MAINTAINERS
index deb3c0cd392a..7c9c88d447e0 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -2257,12 +2257,6 @@ L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
 S:	Supported
 F:	drivers/net/ethernet/cavium/thunder/
 
-ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
-M:	Lukasz Majewski <lukma@denx.de>
-L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
-S:	Maintained
-F:	arch/arm/mach-ep93xx/ts72xx.c
-
 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
 M:	Alexander Shiyan <shc_work@mail.ru>
 L:	linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
-- 
2.46.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
  2024-09-13 11:50 [PATCH] MAINTAINERS: move BK3 machine support to CREDITS Lukas Bulwahn
@ 2024-09-13 12:24 ` Arnd Bergmann
  2024-09-13 12:28   ` Lukas Bulwahn
  2024-09-17 12:43   ` Nikita Shubin
  0 siblings, 2 replies; 6+ messages in thread
From: Arnd Bergmann @ 2024-09-13 12:24 UTC (permalink / raw)
  To: Lukas Bulwahn, Lukasz Majewski, Nikita Shubin, Hartley Sweeten,
	Alexander Sverdlin
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn

On Fri, Sep 13, 2024, at 11:50, Lukas Bulwahn wrote:
> From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
>
> Commit 3e0bae7f35c9 ("ARM: ep93xx: delete all boardfiles") removes
> ts72xx.c, but misses to adjust the ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
> section, which is referring to this file. Hence,
> ./scripts/get_maintainer.pl --self-test=patterns complains about a broken
> reference.
>
> As the corresponding file of this section is gone, remove the whole section
> and note this previous contribution in the CREDITS instead.
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> ---
> Arnd, please pick this quick administration fix on top of the commit
> above. Thanks.

The machine should still work as before, I think we should
instead adapt the path to point to

F: arch/arm/boot/dts/cirrus/ep93xx-bk3.dts
F: arch/arm/boot/dts/cirrus/ep93xx-ts7250.dts

       Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
  2024-09-13 12:24 ` Arnd Bergmann
@ 2024-09-13 12:28   ` Lukas Bulwahn
  2024-09-13 12:36     ` Lukasz Majewski
  2024-09-17 12:43   ` Nikita Shubin
  1 sibling, 1 reply; 6+ messages in thread
From: Lukas Bulwahn @ 2024-09-13 12:28 UTC (permalink / raw)
  To: Arnd Bergmann
  Cc: Lukasz Majewski, Nikita Shubin, Hartley Sweeten,
	Alexander Sverdlin, kernel-janitors, linux-kernel, Lukas Bulwahn

On Fri, Sep 13, 2024 at 2:25 PM Arnd Bergmann <arnd@arndb.de> wrote:
>
> On Fri, Sep 13, 2024, at 11:50, Lukas Bulwahn wrote:
> > From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> >
> > Commit 3e0bae7f35c9 ("ARM: ep93xx: delete all boardfiles") removes
> > ts72xx.c, but misses to adjust the ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
> > section, which is referring to this file. Hence,
> > ./scripts/get_maintainer.pl --self-test=patterns complains about a broken
> > reference.
> >
> > As the corresponding file of this section is gone, remove the whole section
> > and note this previous contribution in the CREDITS instead.
> >
> > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> > ---
> > Arnd, please pick this quick administration fix on top of the commit
> > above. Thanks.
>
> The machine should still work as before, I think we should
> instead adapt the path to point to
>
> F: arch/arm/boot/dts/cirrus/ep93xx-bk3.dts
> F: arch/arm/boot/dts/cirrus/ep93xx-ts7250.dts
>

Okay, I will do that and send a v2.

Lukas


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
  2024-09-13 12:28   ` Lukas Bulwahn
@ 2024-09-13 12:36     ` Lukasz Majewski
  0 siblings, 0 replies; 6+ messages in thread
From: Lukasz Majewski @ 2024-09-13 12:36 UTC (permalink / raw)
  To: Lukas Bulwahn
  Cc: Arnd Bergmann, Nikita Shubin, Hartley Sweeten, Alexander Sverdlin,
	kernel-janitors, linux-kernel, Lukas Bulwahn

[-- Attachment #1: Type: text/plain, Size: 1523 bytes --]

On Fri, 13 Sep 2024 14:28:01 +0200
Lukas Bulwahn <lbulwahn@redhat.com> wrote:

> On Fri, Sep 13, 2024 at 2:25 PM Arnd Bergmann <arnd@arndb.de> wrote:
> >
> > On Fri, Sep 13, 2024, at 11:50, Lukas Bulwahn wrote:  
> > > From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> > >
> > > Commit 3e0bae7f35c9 ("ARM: ep93xx: delete all boardfiles") removes
> > > ts72xx.c, but misses to adjust the ARM/CIRRUS LOGIC BK3 MACHINE
> > > SUPPORT section, which is referring to this file. Hence,
> > > ./scripts/get_maintainer.pl --self-test=patterns complains about
> > > a broken reference.
> > >
> > > As the corresponding file of this section is gone, remove the
> > > whole section and note this previous contribution in the CREDITS
> > > instead.
> > >
> > > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> > > ---
> > > Arnd, please pick this quick administration fix on top of the
> > > commit above. Thanks.  
> >
> > The machine should still work as before, I think we should
> > instead adapt the path to point to
> >
> > F: arch/arm/boot/dts/cirrus/ep93xx-bk3.dts
> > F: arch/arm/boot/dts/cirrus/ep93xx-ts7250.dts
> >  
> 
> Okay, I will do that and send a v2.
> 
> Lukas
> 

Reviewed-by: Lukasz Majewski <lukma@denx.de>


Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Erika Unter
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma@denx.de

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
  2024-09-13 12:24 ` Arnd Bergmann
  2024-09-13 12:28   ` Lukas Bulwahn
@ 2024-09-17 12:43   ` Nikita Shubin
  2024-09-17 15:13     ` Arnd Bergmann
  1 sibling, 1 reply; 6+ messages in thread
From: Nikita Shubin @ 2024-09-17 12:43 UTC (permalink / raw)
  To: Arnd Bergmann, Alexander Sverdlin
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn, Lukas Bulwahn,
	Lukasz Majewski, Hartley Sweeten

Alexander, Arnd.

Do you mind if i put myself to EP93X, right below Alexander in
MAINTAINERS list ?

On Fri, 2024-09-13 at 12:24 +0000, Arnd Bergmann wrote:
> On Fri, Sep 13, 2024, at 11:50, Lukas Bulwahn wrote:
> > From: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> > 
> > Commit 3e0bae7f35c9 ("ARM: ep93xx: delete all boardfiles") removes
> > ts72xx.c, but misses to adjust the ARM/CIRRUS LOGIC BK3 MACHINE
> > SUPPORT
> > section, which is referring to this file. Hence,
> > ./scripts/get_maintainer.pl --self-test=patterns complains about a
> > broken
> > reference.
> > 
> > As the corresponding file of this section is gone, remove the whole
> > section
> > and note this previous contribution in the CREDITS instead.
> > 
> > Signed-off-by: Lukas Bulwahn <lukas.bulwahn@redhat.com>
> > ---
> > Arnd, please pick this quick administration fix on top of the
> > commit
> > above. Thanks.
> 
> The machine should still work as before, I think we should
> instead adapt the path to point to
> 
> F: arch/arm/boot/dts/cirrus/ep93xx-bk3.dts
> F: arch/arm/boot/dts/cirrus/ep93xx-ts7250.dts
> 
>        Arnd


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] MAINTAINERS: move BK3 machine support to CREDITS
  2024-09-17 12:43   ` Nikita Shubin
@ 2024-09-17 15:13     ` Arnd Bergmann
  0 siblings, 0 replies; 6+ messages in thread
From: Arnd Bergmann @ 2024-09-17 15:13 UTC (permalink / raw)
  To: Nikita Shubin, Alexander Sverdlin
  Cc: kernel-janitors, linux-kernel, Lukas Bulwahn, Lukas Bulwahn,
	Lukasz Majewski, Hartley Sweeten

On Tue, Sep 17, 2024, at 12:43, Nikita Shubin wrote:
> Alexander, Arnd.
>
> Do you mind if i put myself to EP93X, right below Alexander in
> MAINTAINERS list ?

No problem, please do that.

     Arnd

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-09-17 15:14 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-13 11:50 [PATCH] MAINTAINERS: move BK3 machine support to CREDITS Lukas Bulwahn
2024-09-13 12:24 ` Arnd Bergmann
2024-09-13 12:28   ` Lukas Bulwahn
2024-09-13 12:36     ` Lukasz Majewski
2024-09-17 12:43   ` Nikita Shubin
2024-09-17 15:13     ` Arnd Bergmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox