* [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget
@ 2024-05-16 9:15 Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 1/2] MAINTAINERS: add tree link for fastboot Mattijs Korpershoek
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Mattijs Korpershoek @ 2024-05-16 9:15 UTC (permalink / raw)
To: Tom Rini, Marek Vasut; +Cc: Lukasz Majewski, u-boot, Mattijs Korpershoek
I've noticed that I'm missing quite some USB gadget patches such as [1]
since I'm not always cc'ed.
With Marek, we agreed on the following split:
- I take care of USB gadget side
- Marek handles the rest
Update the maintainers file to make sure I get included on gadget
related patches.
While at it, also update FASTBOOT entry to point towards the u-boot-dfu
tree.
[1] https://lore.kernel.org/all/20240412202611.3565052-1-alexander.sverdlin@siemens.com/
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
Changes in v2:
- Updated commit message (s/usb/USB) for patch 2
- Added ch9 include to USB gadget list
- Link to v1: https://lore.kernel.org/r/20240514-gadget-maintainer-v1-0-b170f291dc00@baylibre.com
---
Mattijs Korpershoek (2):
MAINTAINERS: add tree link for fastboot
MAINTAINERS: add USB gadget regex to u-boot-dfu tree
MAINTAINERS | 4 ++++
1 file changed, 4 insertions(+)
---
base-commit: c8ffd1356d42223cbb8c86280a083cc3c93e6426
change-id: 20240514-gadget-maintainer-cf40fcf2bab4
Best regards,
--
Mattijs Korpershoek <mkorpershoek@baylibre.com>
^ permalink raw reply [flat|nested] 6+ messages in thread* [v2][PATCH 1/2] MAINTAINERS: add tree link for fastboot
2024-05-16 9:15 [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
@ 2024-05-16 9:15 ` Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree Mattijs Korpershoek
2024-05-16 11:29 ` [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
2 siblings, 0 replies; 6+ messages in thread
From: Mattijs Korpershoek @ 2024-05-16 9:15 UTC (permalink / raw)
To: Tom Rini, Marek Vasut; +Cc: Lukasz Majewski, u-boot, Mattijs Korpershoek
Fastboot patches go through the u-boot-dfu tree.
Add a link in the maintainers file for it.
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
MAINTAINERS | 1 +
1 file changed, 1 insertion(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 6853288975c0..05217db79f7e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1118,6 +1118,7 @@ F: test/py/tests/test_event_dump.py
FASTBOOT
M: Mattijs Korpershoek <mkorpershoek@baylibre.com>
S: Maintained
+T: git https://source.denx.de/u-boot/custodians/u-boot-dfu.git
F: cmd/fastboot.c
F: doc/android/fastboot*.rst
F: include/fastboot.h
--
2.44.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree
2024-05-16 9:15 [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 1/2] MAINTAINERS: add tree link for fastboot Mattijs Korpershoek
@ 2024-05-16 9:15 ` Mattijs Korpershoek
2024-05-16 10:23 ` Marek Vasut
2024-05-16 11:29 ` [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
2 siblings, 1 reply; 6+ messages in thread
From: Mattijs Korpershoek @ 2024-05-16 9:15 UTC (permalink / raw)
To: Tom Rini, Marek Vasut; +Cc: Lukasz Majewski, u-boot, Mattijs Korpershoek
We try to split work with Marek on USB as following:
- Mattijs handles USB gadget
- Marek handles the rest of USB
Add additional gadget patterns to the maintainers file so that I
get cc'ed more often on USB gadget patches.
Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
---
MAINTAINERS | 3 +++
1 file changed, 3 insertions(+)
diff --git a/MAINTAINERS b/MAINTAINERS
index 05217db79f7e..6d021763a62a 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1017,8 +1017,11 @@ F: common/update.c
F: doc/api/dfu.rst
F: doc/usage/dfu.rst
F: drivers/dfu/
+F: drivers/usb/*/*gadget*
F: drivers/usb/gadget/
F: include/dfu.h
+F: include/linux/usb/ch9.h
+F: include/linux/usb/gadget.h
DRIVER MODEL
M: Simon Glass <sjg@chromium.org>
--
2.44.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree
2024-05-16 9:15 ` [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree Mattijs Korpershoek
@ 2024-05-16 10:23 ` Marek Vasut
2024-05-16 11:27 ` Mattijs Korpershoek
0 siblings, 1 reply; 6+ messages in thread
From: Marek Vasut @ 2024-05-16 10:23 UTC (permalink / raw)
To: Mattijs Korpershoek, Tom Rini; +Cc: Lukasz Majewski, u-boot
On 5/16/24 11:15 AM, Mattijs Korpershoek wrote:
> We try to split work with Marek on USB as following:
> - Mattijs handles USB gadget
> - Marek handles the rest of USB
>
> Add additional gadget patterns to the maintainers file so that I
> get cc'ed more often on USB gadget patches.
>
> Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Acked-by: Marek Vasut <marex@denx.de>
You can try and look at the N: instead of F: (see top of MAINTAINERS for
meaning), but that should be separate clean up patch.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree
2024-05-16 10:23 ` Marek Vasut
@ 2024-05-16 11:27 ` Mattijs Korpershoek
0 siblings, 0 replies; 6+ messages in thread
From: Mattijs Korpershoek @ 2024-05-16 11:27 UTC (permalink / raw)
To: Marek Vasut, Tom Rini; +Cc: Lukasz Majewski, u-boot
Hi Marek,
Thank you for the review.
On jeu., mai 16, 2024 at 12:23, Marek Vasut <marex@denx.de> wrote:
> On 5/16/24 11:15 AM, Mattijs Korpershoek wrote:
>> We try to split work with Marek on USB as following:
>> - Mattijs handles USB gadget
>> - Marek handles the rest of USB
>>
>> Add additional gadget patterns to the maintainers file so that I
>> get cc'ed more often on USB gadget patches.
>>
>> Signed-off-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>
> Acked-by: Marek Vasut <marex@denx.de>
>
> You can try and look at the N: instead of F: (see top of MAINTAINERS for
> meaning), but that should be separate clean up patch.
Noted, will review the differences and consider a later clean up patch!
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget
2024-05-16 9:15 [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 1/2] MAINTAINERS: add tree link for fastboot Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree Mattijs Korpershoek
@ 2024-05-16 11:29 ` Mattijs Korpershoek
2 siblings, 0 replies; 6+ messages in thread
From: Mattijs Korpershoek @ 2024-05-16 11:29 UTC (permalink / raw)
To: Tom Rini, Marek Vasut, Mattijs Korpershoek; +Cc: Lukasz Majewski, u-boot
Hi,
On Thu, 16 May 2024 11:15:40 +0200, Mattijs Korpershoek wrote:
> I've noticed that I'm missing quite some USB gadget patches such as [1]
> since I'm not always cc'ed.
>
> With Marek, we agreed on the following split:
> - I take care of USB gadget side
> - Marek handles the rest
>
> [...]
Thanks, Applied to https://source.denx.de/u-boot/custodians/u-boot-dfu (u-boot-dfu)
[1/2] MAINTAINERS: add tree link for fastboot
https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/5738a44f88d65c2847ad204e6ba9f4a5f12f7d4e
[2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree
https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/efbc11ccef89030ed54b7368458eeaf9ec687c77
--
Mattijs
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-05-16 11:29 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-16 9:15 [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 1/2] MAINTAINERS: add tree link for fastboot Mattijs Korpershoek
2024-05-16 9:15 ` [v2][PATCH 2/2] MAINTAINERS: add USB gadget regex to u-boot-dfu tree Mattijs Korpershoek
2024-05-16 10:23 ` Marek Vasut
2024-05-16 11:27 ` Mattijs Korpershoek
2024-05-16 11:29 ` [v2][PATCH 0/2] MAINTAINERS: updates for fastboot and USB gadget Mattijs Korpershoek
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.