Skip to content

Commit

Permalink
usb: ehci-sh: Fix build error due to comma has been deleted
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Nobuhiro Iwamatsu authored and Greg Kroah-Hartman committed Mar 28, 2013
1 parent 84ebc10 commit 1c3a46d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/host/ehci-sh.c
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1c3a46d

Please sign in to comment.