mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-30 20:30:32 -04:00
usb: gadget: dummy_hcd: remove useless cast for driver.name
device_driver name is const char pointer, so it not useful to cast driver_name (which is already const char). Signed-off-by: Corentin Labbe <clabbe@baylibre.com> Link: https://lore.kernel.org/r/1582054383-35760-6-git-send-email-clabbe@baylibre.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
bd69953344
commit
f9a4e69976
@@ -1134,7 +1134,7 @@ static struct platform_driver dummy_udc_driver = {
|
||||
.suspend = dummy_udc_suspend,
|
||||
.resume = dummy_udc_resume,
|
||||
.driver = {
|
||||
.name = (char *) gadget_name,
|
||||
.name = gadget_name,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -2720,7 +2720,7 @@ static struct platform_driver dummy_hcd_driver = {
|
||||
.suspend = dummy_hcd_suspend,
|
||||
.resume = dummy_hcd_resume,
|
||||
.driver = {
|
||||
.name = (char *) driver_name,
|
||||
.name = driver_name,
|
||||
},
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user