mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 18:43:33 +02:00
usb: renesas_usbhs: Simplify obtaining device data
Simplify probe() by removing redundant dev->of_node check. While at it, replace dev_err->dev_err_probe for error path. Signed-off-by: Biju Das <biju.das.jz@bp.renesas.com> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Link: https://lore.kernel.org/r/20240319105356.87287-3-biju.das.jz@bp.renesas.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c4f426460f
commit
a79c5b6f67
|
|
@ -595,16 +595,11 @@ static int usbhs_probe(struct platform_device *pdev)
|
|||
u32 tmp;
|
||||
int irq;
|
||||
|
||||
/* check device node */
|
||||
if (dev_of_node(dev))
|
||||
info = of_device_get_match_data(dev);
|
||||
else
|
||||
info = renesas_usbhs_get_info(pdev);
|
||||
|
||||
/* check platform information */
|
||||
info = of_device_get_match_data(dev);
|
||||
if (!info) {
|
||||
dev_err(dev, "no platform information\n");
|
||||
return -EINVAL;
|
||||
info = renesas_usbhs_get_info(pdev);
|
||||
if (!info)
|
||||
return dev_err_probe(dev, -EINVAL, "no platform info\n");
|
||||
}
|
||||
|
||||
/* platform data */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user