From: Russell King Date: Mon, 3 Jul 2006 14:32:47 +0000 (+0100) Subject: [ARM] Fix lh7a40x_udc.c X-Git-Tag: v2.6.18-rc1~19^2 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=0f1482fdd7e5efc473335b92f350027b8f1519fb;p=linux-2.6-omap-h63xx.git [ARM] Fix lh7a40x_udc.c In 3ae5eaec1d2d9c0cf53745352e7d4b152810ba24, I broke this driver by missing a comma. Replace the missing comma. Signed-off-by: Russell King --- diff --git a/drivers/usb/gadget/lh7a40x_udc.c b/drivers/usb/gadget/lh7a40x_udc.c index bb22b7e8287..36db7257937 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) 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 */