* [PATCH] usb: udc: pxa: fix error handling
@ 2026-05-26 10:47 Arnd Bergmann
0 siblings, 0 replies; only message in thread
From: Arnd Bergmann @ 2026-05-26 10:47 UTC (permalink / raw)
To: Daniel Mack, Haojian Zhuang, Robert Jarzmik, Greg Kroah-Hartman,
Andy Shevchenko, Arnd Bergmann
Cc: Dan Carpenter, linux-arm-kernel, linux-usb, linux-kernel
From: Arnd Bergmann <arnd@arndb.de>
As Dan Carpenter points out, my recent change makes subtle
changes to the error handling that were not intended.
Move the warning print up so it does not get skipped in
case of an error, but handle -EPROBE_DEFER properly now.
Change the devm_gpiod_get() to the _optional variant, which
is in line with the intended behavior and the DT binding,
though this did not work previously.
Reported-by: Dan Carpenter <error27@gmail.com>
Link: https://lore.kernel.org/linux-usb/ag6-xhfFjb5NpXQz@stanley.mountain/
Fixes: 25bd55f46032 ("usb: udc: pxa: remove unused platform_data")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
drivers/usb/gadget/udc/pxa27x_udc.c | 10 +++-------
1 file changed, 3 insertions(+), 7 deletions(-)
diff --git a/drivers/usb/gadget/udc/pxa27x_udc.c b/drivers/usb/gadget/udc/pxa27x_udc.c
index 640f81988c04..df5cca43afbe 100644
--- a/drivers/usb/gadget/udc/pxa27x_udc.c
+++ b/drivers/usb/gadget/udc/pxa27x_udc.c
@@ -2374,9 +2374,10 @@ static int pxa_udc_probe(struct platform_device *pdev)
struct pxa_udc *udc = &memory;
int retval = 0;
- udc->gpiod = devm_gpiod_get(&pdev->dev, NULL, GPIOD_ASIS);
+ udc->gpiod = devm_gpiod_get_optional(&pdev->dev, NULL, GPIOD_ASIS);
if (IS_ERR(udc->gpiod))
- return PTR_ERR(udc->gpiod);
+ return dev_err_probe(&pdev->dev, PTR_ERR(udc->gpiod),
+ "Couldn't find or request D+ gpio\n");
udc->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(udc->regs))
@@ -2395,11 +2396,6 @@ static int pxa_udc_probe(struct platform_device *pdev)
udc->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
}
- if (IS_ERR(udc->gpiod)) {
- dev_err(&pdev->dev, "Couldn't find or request D+ gpio : %ld\n",
- PTR_ERR(udc->gpiod));
- return PTR_ERR(udc->gpiod);
- }
if (udc->gpiod)
gpiod_direction_output(udc->gpiod, 0);
--
2.39.5
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-26 10:48 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-26 10:47 [PATCH] usb: udc: pxa: fix error handling Arnd Bergmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox