* [PATCH] usb: dwc3: gadget: Fix excepts/expects typo
@ 2025-03-24 14:39 Marek Vasut
2025-03-24 14:48 ` Mattijs Korpershoek
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Marek Vasut @ 2025-03-24 14:39 UTC (permalink / raw)
To: u-boot
Cc: Marek Vasut, Alexander Sverdlin, Felipe Balbi,
Mattijs Korpershoek, Neil Armstrong, Thinh Nguyen, Tom Rini
Fix the excepts typo to expects , no functional change.
Fixes: 0916053ebc56 ("usb: dwc3: gadget: Fix match_ep callback for NXP UUU tool")
Signed-off-by: Marek Vasut <marex@denx.de>
---
Cc: Alexander Sverdlin <alexander.sverdlin@siemens.com>
Cc: Felipe Balbi <felipe.balbi@linux.intel.com>
Cc: Mattijs Korpershoek <mkorpershoek@baylibre.com>
Cc: Neil Armstrong <neil.armstrong@linaro.org>
Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
Cc: Tom Rini <trini@konsulko.com>
Cc: u-boot@lists.denx.de
---
drivers/usb/dwc3/gadget.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
index 477ecd02098..2b01113d54c 100644
--- a/drivers/usb/dwc3/gadget.c
+++ b/drivers/usb/dwc3/gadget.c
@@ -1635,7 +1635,7 @@ usb_ep *dwc3_gadget_match_ep(struct usb_gadget *gadget,
/*
* Special workaround for NXP UUU tool in SPL.
*
- * The tool excepts the interrupt-in endpoint to be ep1in,
+ * The tool expects the interrupt-in endpoint to be ep1in,
* otherwise it crashes. This is a result of the previous
* hard-coded EP setup in drivers/usb/gadget/epautoconf.c
* which did special-case EP allocation for SPL builds,
--
2.47.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] usb: dwc3: gadget: Fix excepts/expects typo
2025-03-24 14:39 [PATCH] usb: dwc3: gadget: Fix excepts/expects typo Marek Vasut
@ 2025-03-24 14:48 ` Mattijs Korpershoek
2025-03-24 14:51 ` Neil Armstrong
2025-04-10 8:46 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2025-03-24 14:48 UTC (permalink / raw)
To: Marek Vasut, u-boot
Cc: Marek Vasut, Alexander Sverdlin, Felipe Balbi, Neil Armstrong,
Thinh Nguyen, Tom Rini
Hi Marek,
Thank you for the patch.
On lun., mars 24, 2025 at 15:39, Marek Vasut <marex@denx.de> wrote:
> Fix the excepts typo to expects , no functional change.
>
> Fixes: 0916053ebc56 ("usb: dwc3: gadget: Fix match_ep callback for NXP UUU tool")
> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
> Cc: Alexander Sverdlin <alexander.sverdlin@siemens.com>
> Cc: Felipe Balbi <felipe.balbi@linux.intel.com>
> Cc: Mattijs Korpershoek <mkorpershoek@baylibre.com>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> Cc: Tom Rini <trini@konsulko.com>
> Cc: u-boot@lists.denx.de
> ---
> drivers/usb/dwc3/gadget.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
>
[...]
> --
> 2.47.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] usb: dwc3: gadget: Fix excepts/expects typo
2025-03-24 14:39 [PATCH] usb: dwc3: gadget: Fix excepts/expects typo Marek Vasut
2025-03-24 14:48 ` Mattijs Korpershoek
@ 2025-03-24 14:51 ` Neil Armstrong
2025-04-10 8:46 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2025-03-24 14:51 UTC (permalink / raw)
To: Marek Vasut, u-boot
Cc: Alexander Sverdlin, Felipe Balbi, Mattijs Korpershoek,
Thinh Nguyen, Tom Rini
On 24/03/2025 15:39, Marek Vasut wrote:
> Fix the excepts typo to expects , no functional change.
>
> Fixes: 0916053ebc56 ("usb: dwc3: gadget: Fix match_ep callback for NXP UUU tool")
> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
> Cc: Alexander Sverdlin <alexander.sverdlin@siemens.com>
> Cc: Felipe Balbi <felipe.balbi@linux.intel.com>
> Cc: Mattijs Korpershoek <mkorpershoek@baylibre.com>
> Cc: Neil Armstrong <neil.armstrong@linaro.org>
> Cc: Thinh Nguyen <Thinh.Nguyen@synopsys.com>
> Cc: Tom Rini <trini@konsulko.com>
> Cc: u-boot@lists.denx.de
> ---
> drivers/usb/dwc3/gadget.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c
> index 477ecd02098..2b01113d54c 100644
> --- a/drivers/usb/dwc3/gadget.c
> +++ b/drivers/usb/dwc3/gadget.c
> @@ -1635,7 +1635,7 @@ usb_ep *dwc3_gadget_match_ep(struct usb_gadget *gadget,
> /*
> * Special workaround for NXP UUU tool in SPL.
> *
> - * The tool excepts the interrupt-in endpoint to be ep1in,
> + * The tool expects the interrupt-in endpoint to be ep1in,
> * otherwise it crashes. This is a result of the previous
> * hard-coded EP setup in drivers/usb/gadget/epautoconf.c
> * which did special-case EP allocation for SPL builds,
Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] usb: dwc3: gadget: Fix excepts/expects typo
2025-03-24 14:39 [PATCH] usb: dwc3: gadget: Fix excepts/expects typo Marek Vasut
2025-03-24 14:48 ` Mattijs Korpershoek
2025-03-24 14:51 ` Neil Armstrong
@ 2025-04-10 8:46 ` Mattijs Korpershoek
2 siblings, 0 replies; 4+ messages in thread
From: Mattijs Korpershoek @ 2025-04-10 8:46 UTC (permalink / raw)
To: u-boot, Marek Vasut
Cc: Alexander Sverdlin, Felipe Balbi, Neil Armstrong, Thinh Nguyen,
Tom Rini, Mattijs Korpershoek
Hi,
On Mon, 24 Mar 2025 15:39:43 +0100, Marek Vasut wrote:
> Fix the excepts typo to expects , no functional change.
>
>
Thanks, Applied to https://source.denx.de/u-boot/custodians/u-boot-dfu (u-boot-dfu)
[1/1] usb: dwc3: gadget: Fix excepts/expects typo
https://source.denx.de/u-boot/custodians/u-boot-dfu/-/commit/7cedd20ed384a9748bba3fee05d504674109087a
--
Mattijs
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-04-10 8:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-24 14:39 [PATCH] usb: dwc3: gadget: Fix excepts/expects typo Marek Vasut
2025-03-24 14:48 ` Mattijs Korpershoek
2025-03-24 14:51 ` Neil Armstrong
2025-04-10 8:46 ` 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.