usb: gadget: r8a66597-udc: remove useless cast for driver.name
authorCorentin Labbe <clabbe@baylibre.com>
Tue, 18 Feb 2020 19:32:56 +0000 (19:32 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 19 Feb 2020 10:10:26 +0000 (11:10 +0100)
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-14-git-send-email-clabbe@baylibre.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/udc/r8a66597-udc.c

index 582a161..537094b 100644 (file)
@@ -1968,7 +1968,7 @@ clean_up2:
 static struct platform_driver r8a66597_driver = {
        .remove =       r8a66597_remove,
        .driver         = {
-               .name = (char *) udc_name,
+               .name = udc_name,
        },
 };