diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2015-11-28 16:07:10 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-12-01 14:36:29 -0800 |
commit | 6fb8ac81cb3125aafc7136f2ef0145da792bab94 (patch) | |
tree | 658a64aea6b59cd981189be05bde09231286a51c /drivers/usb/mon | |
parent | c7c7806700e15ca9c48d880f8c65071f041cd890 (diff) | |
download | linux-6fb8ac81cb3125aafc7136f2ef0145da792bab94.tar.gz linux-6fb8ac81cb3125aafc7136f2ef0145da792bab94.tar.xz |
USB: constify usb_mon_operations structure
The usb_mon_operations structure is never modified, so declare it as const.
Done with the help of Coccinelle.
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/mon')
-rw-r--r-- | drivers/usb/mon/mon_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/mon/mon_main.c b/drivers/usb/mon/mon_main.c index f7c292f4891e..fec3f1128fdc 100644 --- a/drivers/usb/mon/mon_main.c +++ b/drivers/usb/mon/mon_main.c @@ -241,7 +241,7 @@ static struct notifier_block mon_nb = { /* * Ops */ -static struct usb_mon_operations mon_ops_0 = { +static const struct usb_mon_operations mon_ops_0 = { .urb_submit = mon_submit, .urb_submit_error = mon_submit_error, .urb_complete = mon_complete, |