usb: gadget: ci: Make various ops const
ci_udc_ops and ci_ep_ops do not change their operations. Mark them as const. Signed-off-by: Adam Ford <aford173@gmail.com>
This commit is contained in:
parent
ea5583b90f
commit
570eaadac0
@ -94,11 +94,11 @@ static struct usb_request *
|
||||
ci_ep_alloc_request(struct usb_ep *ep, unsigned int gfp_flags);
|
||||
static void ci_ep_free_request(struct usb_ep *ep, struct usb_request *_req);
|
||||
|
||||
static struct usb_gadget_ops ci_udc_ops = {
|
||||
static const struct usb_gadget_ops ci_udc_ops = {
|
||||
.pullup = ci_pullup,
|
||||
};
|
||||
|
||||
static struct usb_ep_ops ci_ep_ops = {
|
||||
static const struct usb_ep_ops ci_ep_ops = {
|
||||
.enable = ci_ep_enable,
|
||||
.disable = ci_ep_disable,
|
||||
.queue = ci_ep_queue,
|
||||
|
Loading…
Reference in New Issue
Block a user