From: Nobuhiro Iwamatsu Date: Wed, 27 Mar 2013 06:09:03 +0000 (+0900) Subject: usb: ehci-sh: Fix build error due to comma has been deleted X-Git-Tag: v3.10-rc1~190^2~109 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1c3a46de66577b4ff53597addb977aa377e61d8c;p=thirdparty%2Fkernel%2Flinux.git 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 CC: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ehci-sh.c b/drivers/usb/host/ehci-sh.c index e30e396720274..b0f2268784b1d 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) static struct platform_driver ehci_hcd_sh_driver = { .probe = ehci_hcd_sh_probe, - .remove = ehci_hcd_sh_remove + .remove = ehci_hcd_sh_remove, .shutdown = ehci_hcd_sh_shutdown, .driver = { .name = "sh_ehci",