diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-07-03 10:32:47 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-07-03 10:32:47 -0400 |
commit | 0f1482fdd7e5efc473335b92f350027b8f1519fb (patch) | |
tree | c55997da0acf95b1b54b54a124cfc01d8ff8df45 /drivers/usb/gadget/lh7a40x_udc.c | |
parent | 67f3a58856b6a41a46e9256a79a8ca3809f47cc6 (diff) |
[ARM] Fix lh7a40x_udc.c
In 3ae5eaec1d2d9c0cf53745352e7d4b152810ba24, I broke this driver
by missing a comma. Replace the missing comma.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'drivers/usb/gadget/lh7a40x_udc.c')
-rw-r--r-- | drivers/usb/gadget/lh7a40x_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/lh7a40x_udc.c b/drivers/usb/gadget/lh7a40x_udc.c index bb22b7e82877..36db72579377 100644 --- a/drivers/usb/gadget/lh7a40x_udc.c +++ b/drivers/usb/gadget/lh7a40x_udc.c | |||
@@ -2143,7 +2143,7 @@ static int lh7a40x_udc_remove(struct platform_device *pdev) | |||
2143 | 2143 | ||
2144 | static struct platform_driver udc_driver = { | 2144 | static struct platform_driver udc_driver = { |
2145 | .probe = lh7a40x_udc_probe, | 2145 | .probe = lh7a40x_udc_probe, |
2146 | .remove = lh7a40x_udc_remove | 2146 | .remove = lh7a40x_udc_remove, |
2147 | /* FIXME power management support */ | 2147 | /* FIXME power management support */ |
2148 | /* .suspend = ... disable UDC */ | 2148 | /* .suspend = ... disable UDC */ |
2149 | /* .resume = ... re-enable UDC */ | 2149 | /* .resume = ... re-enable UDC */ |