mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 08:53:18 +07:00
usb: gadget: fusb300_udc: 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). Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Link: https://lore.kernel.org/r/1582054383-35760-8-git-send-email-clabbe@baylibre.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4697bf3f7b
commit
3620ed3007
@ -1507,7 +1507,7 @@ static int fusb300_probe(struct platform_device *pdev)
|
||||
static struct platform_driver fusb300_driver = {
|
||||
.remove = fusb300_remove,
|
||||
.driver = {
|
||||
.name = (char *) udc_name,
|
||||
.name = udc_name,
|
||||
},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user