1
0
Fork 0

usb: gadget: aspeed-vhub: constify usb_gadget_ops structure

The usb_gadget_ops structure can be const as it is only stored in
the ops field of a usb_gadget structure and this field is const.

Done with the help of Coccinelle.

Reviewed-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
hifive-unleashed-5.1
Julia Lawall 2018-10-30 17:19:59 +01:00 committed by Felipe Balbi
parent 022a0208c0
commit 1808bd2132
1 changed files with 1 additions and 1 deletions

View File

@ -438,7 +438,7 @@ static int ast_vhub_udc_stop(struct usb_gadget *gadget)
return 0;
}
static struct usb_gadget_ops ast_vhub_udc_ops = {
static const struct usb_gadget_ops ast_vhub_udc_ops = {
.get_frame = ast_vhub_udc_get_frame,
.wakeup = ast_vhub_udc_wakeup,
.pullup = ast_vhub_udc_pullup,