diff options
| author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-08-09 12:29:14 -0400 |
|---|---|---|
| committer | Kalle Valo <kvalo@codeaurora.org> | 2017-08-10 04:56:01 -0400 |
| commit | 88ee79a1a11c52a9eb96109220a4533c805848df (patch) | |
| tree | e08db6d774bc3bab60efb8dfde744a04f8a885f7 /drivers/net/wireless/ralink | |
| parent | e2717b3127502a3c3344f93f0562b60b88ccd4ef (diff) | |
rt2500usb: constify usb_device_id
usb_device_id are not supposed to change at runtime. All functions
working with usb_device_id provided by <linux/usb.h> work with
const usb_device_id. So mark the non-const structs as const.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/net/wireless/ralink')
| -rw-r--r-- | drivers/net/wireless/ralink/rt2x00/rt2500usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ralink/rt2x00/rt2500usb.c b/drivers/net/wireless/ralink/rt2x00/rt2500usb.c index 529e05999abb..f4b48b77c491 100644 --- a/drivers/net/wireless/ralink/rt2x00/rt2500usb.c +++ b/drivers/net/wireless/ralink/rt2x00/rt2500usb.c | |||
| @@ -1911,7 +1911,7 @@ static const struct rt2x00_ops rt2500usb_ops = { | |||
| 1911 | /* | 1911 | /* |
| 1912 | * rt2500usb module information. | 1912 | * rt2500usb module information. |
| 1913 | */ | 1913 | */ |
| 1914 | static struct usb_device_id rt2500usb_device_table[] = { | 1914 | static const struct usb_device_id rt2500usb_device_table[] = { |
| 1915 | /* ASUS */ | 1915 | /* ASUS */ |
| 1916 | { USB_DEVICE(0x0b05, 0x1706) }, | 1916 | { USB_DEVICE(0x0b05, 0x1706) }, |
| 1917 | { USB_DEVICE(0x0b05, 0x1707) }, | 1917 | { USB_DEVICE(0x0b05, 0x1707) }, |
