usb: gadget: renesas_usb3: remove useless cast for driver.name

device_driver name is const char pointer, so it not useful to cast
udc_name (which is already const char).

Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
Link: https://lore.kernel.org/r/1582054383-35760-15-git-send-email-clabbe@baylibre.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Corentin Labbe 2020-02-18 19:32:57 +00:00 committed by Greg Kroah-Hartman
parent 5803e6e3ea
commit f7bcff35dc

View File

@ -2906,7 +2906,7 @@ static struct platform_driver renesas_usb3_driver = {
.probe = renesas_usb3_probe, .probe = renesas_usb3_probe,
.remove = renesas_usb3_remove, .remove = renesas_usb3_remove,
.driver = { .driver = {
.name = (char *)udc_name, .name = udc_name,
.pm = &renesas_usb3_pm_ops, .pm = &renesas_usb3_pm_ops,
.of_match_table = of_match_ptr(usb3_of_match), .of_match_table = of_match_ptr(usb3_of_match),
}, },