usb: gadget: atmel_usba_udc: add missing ret value check
Add missing return value check. In case of error print debug message and return error code. Signed-off-by: Robert Baldyga <r.baldyga@samsung.com> Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com> Acked-by: Michal Nazarewicz <mina86@mina86.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
Родитель
cb009d6e0b
Коммит
7674cba55a
|
@ -1989,6 +1989,10 @@ static struct usba_ep * atmel_udc_of_init(struct platform_device *pdev,
|
|||
ep->can_isoc = of_property_read_bool(pp, "atmel,can-isoc");
|
||||
|
||||
ret = of_property_read_string(pp, "name", &name);
|
||||
if (ret) {
|
||||
dev_err(&pdev->dev, "of_probe: name error(%d)\n", ret);
|
||||
goto err;
|
||||
}
|
||||
ep->ep.name = name;
|
||||
|
||||
ep->ep_regs = udc->regs + USBA_EPT_BASE(i);
|
||||
|
|
Загрузка…
Ссылка в новой задаче