aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/imx21-hcd.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert@linux-m68k.org>2013-11-12 14:07:25 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-12-03 14:17:28 -0500
commita458677db6a928535a7186248983d1e192142e83 (patch)
tree50ab63d1ec4e52fd1a9516348168588be2ba278a /drivers/usb/host/imx21-hcd.c
parentbde5ae91e8204fb747ad409e79504cc672dc97d6 (diff)
usb: host: Remove superfluous name casts
device_driver.name is "const char *" Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/imx21-hcd.c')
-rw-r--r--drivers/usb/host/imx21-hcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/imx21-hcd.c b/drivers/usb/host/imx21-hcd.c
index cb6d60853502..0122624c7ec1 100644
--- a/drivers/usb/host/imx21-hcd.c
+++ b/drivers/usb/host/imx21-hcd.c
@@ -1930,7 +1930,7 @@ failed_request_mem:
1930 1930
1931static struct platform_driver imx21_hcd_driver = { 1931static struct platform_driver imx21_hcd_driver = {
1932 .driver = { 1932 .driver = {
1933 .name = (char *)hcd_name, 1933 .name = hcd_name,
1934 }, 1934 },
1935 .probe = imx21_probe, 1935 .probe = imx21_probe,
1936 .remove = imx21_remove, 1936 .remove = imx21_remove,