Skip to content

Commit

Permalink
[ARM] Fix lh7a40x_udc.c
Browse files Browse the repository at this point in the history
In 3ae5eae, I broke this driver
by missing a comma.  Replace the missing comma.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jul 3, 2006
1 parent 67f3a58 commit 0f1482f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/usb/gadget/lh7a40x_udc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2143,7 +2143,7 @@ static int lh7a40x_udc_remove(struct platform_device *pdev)

static struct platform_driver udc_driver = {
.probe = lh7a40x_udc_probe,
.remove = lh7a40x_udc_remove
.remove = lh7a40x_udc_remove,
/* FIXME power management support */
/* .suspend = ... disable UDC */
/* .resume = ... re-enable UDC */
Expand Down

0 comments on commit 0f1482f

Please sign in to comment.