aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/gadget/fusb300_udc.c
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2013-01-24 10:58:16 -0500
committerFelipe Balbi <balbi@ti.com>2013-01-24 14:11:35 -0500
commiteeef45876631a446eaedce16675f4ff344e16cf0 (patch)
treef5309827b77918b0af928e96d1922e1f6f95ddbe /drivers/usb/gadget/fusb300_udc.c
parent449d04a977f63e6218d88312f9bd3cb53fb5d30b (diff)
usb: gadget: constify all struct usb_gadget_ops
Add the missing 'const' keyword to all struct usb_gadget_ops in the gadget framework. Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/fusb300_udc.c')
-rw-r--r--drivers/usb/gadget/fusb300_udc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/fusb300_udc.c b/drivers/usb/gadget/fusb300_udc.c
index 8c2372fa294f..9fafb00d3c7a 100644
--- a/drivers/usb/gadget/fusb300_udc.c
+++ b/drivers/usb/gadget/fusb300_udc.c
@@ -1341,7 +1341,7 @@ static int fusb300_udc_pullup(struct usb_gadget *_gadget, int is_active)
1341 return 0; 1341 return 0;
1342} 1342}
1343 1343
1344static struct usb_gadget_ops fusb300_gadget_ops = { 1344static const struct usb_gadget_ops fusb300_gadget_ops = {
1345 .pullup = fusb300_udc_pullup, 1345 .pullup = fusb300_udc_pullup,
1346 .udc_start = fusb300_udc_start, 1346 .udc_start = fusb300_udc_start,
1347 .udc_stop = fusb300_udc_stop, 1347 .udc_stop = fusb300_udc_stop,