aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-sh.c
diff options
context:
space:
mode:
authorNobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>2013-03-27 02:09:03 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-28 14:14:46 -0400
commit1c3a46de66577b4ff53597addb977aa377e61d8c (patch)
tree0ca71e721c74d56f1dbc8caa821d09c300969e3c /drivers/usb/host/ehci-sh.c
parent84ebc10294a3d7be4c66f51070b7aedbaa24de9b (diff)
usb: ehci-sh: Fix build error due to comma has been deleted
By commit 39d3568 (USB: remove incorrect __exit markups), comma following ehci_hcd_sh_remove has been deleted. This fixes the error by the correction. Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> CC: Dmitry Torokhov <dmitry.torokhov@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-sh.c')
-rw-r--r--drivers/usb/host/ehci-sh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/ehci-sh.c b/drivers/usb/host/ehci-sh.c
index e30e39672027..b0f2268784b1 100644
--- a/drivers/usb/host/ehci-sh.c
+++ b/drivers/usb/host/ehci-sh.c
@@ -196,7 +196,7 @@ static void ehci_hcd_sh_shutdown(struct platform_device *pdev)
196 196
197static struct platform_driver ehci_hcd_sh_driver = { 197static struct platform_driver ehci_hcd_sh_driver = {
198 .probe = ehci_hcd_sh_probe, 198 .probe = ehci_hcd_sh_probe,
199 .remove = ehci_hcd_sh_remove 199 .remove = ehci_hcd_sh_remove,
200 .shutdown = ehci_hcd_sh_shutdown, 200 .shutdown = ehci_hcd_sh_shutdown,
201 .driver = { 201 .driver = {
202 .name = "sh_ehci", 202 .name = "sh_ehci",