From: Bhumika Goyal Date: Wed, 9 Aug 2017 09:38:56 +0000 (+0530) Subject: USB: atm: make atmdev_ops const X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0f7735477de7e1565949d8bd64aa14547758c3a6;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git USB: atm: make atmdev_ops const Make these const as they are only passed to the function atm_dev_register and the corresponding argument is of type const. Done using Coccinelle. Signed-off-by: Bhumika Goyal Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/atm/usbatm.c b/drivers/usb/atm/usbatm.c index 75a5ff2f8a0f..8607af758bbd 100644 --- a/drivers/usb/atm/usbatm.c +++ b/drivers/usb/atm/usbatm.c @@ -173,7 +173,7 @@ static int usbatm_atm_ioctl(struct atm_dev *atm_dev, unsigned int cmd, void __us static int usbatm_atm_send(struct atm_vcc *vcc, struct sk_buff *skb); static int usbatm_atm_proc_read(struct atm_dev *atm_dev, loff_t *pos, char *page); -static struct atmdev_ops usbatm_atm_devops = { +static const struct atmdev_ops usbatm_atm_devops = { .dev_close = usbatm_atm_dev_close, .open = usbatm_atm_open, .close = usbatm_atm_close,