usb: renesas_usbhs: Remove renesas_usbhs_get_info() wrapper
The renesas_usbhs_get_info() wrapper was useful for legacy board code.
Since commit 1fa59bda21
("ARM: shmobile: Remove legacy board code
for Armadillo-800 EVA") in v4.3, it is no longer used outside the USBHS
driver, and provides no added value over dev_get_platdata(), while
obfuscating the real operation.
Drop it, and replace it by dev_get_platdata() in its sole user.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Biju Das <biju.das.jz@bp.renesas.com>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Link: https://lore.kernel.org/r/fa296af4452dfe394a58b75fd44c3bb9591936eb.1713282736.git.geert+renesas@glider.be
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
606c096adc
commit
bd2cd796d2
@ -613,7 +613,7 @@ static int usbhs_probe(struct platform_device *pdev)
|
|||||||
|
|
||||||
info = of_device_get_match_data(dev);
|
info = of_device_get_match_data(dev);
|
||||||
if (!info) {
|
if (!info) {
|
||||||
info = renesas_usbhs_get_info(pdev);
|
info = dev_get_platdata(dev);
|
||||||
if (!info)
|
if (!info)
|
||||||
return dev_err_probe(dev, -EINVAL, "no platform info\n");
|
return dev_err_probe(dev, -EINVAL, "no platform info\n");
|
||||||
}
|
}
|
||||||
|
@ -194,9 +194,4 @@ struct renesas_usbhs_platform_info {
|
|||||||
struct renesas_usbhs_driver_param driver_param;
|
struct renesas_usbhs_driver_param driver_param;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
* macro for platform
|
|
||||||
*/
|
|
||||||
#define renesas_usbhs_get_info(pdev)\
|
|
||||||
((struct renesas_usbhs_platform_info *)(pdev)->dev.platform_data)
|
|
||||||
#endif /* RENESAS_USB_H */
|
#endif /* RENESAS_USB_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user