| .. | .. |
|---|
| 40 | 40 | .driver_info = (flags) \ |
|---|
| 41 | 41 | } |
|---|
| 42 | 42 | |
|---|
| 43 | | -struct usb_device_id usb_storage_usb_ids[] = { |
|---|
| 43 | +const struct usb_device_id usb_storage_usb_ids[] = { |
|---|
| 44 | 44 | # include "unusual_devs.h" |
|---|
| 45 | 45 | { } /* Terminating entry */ |
|---|
| 46 | 46 | }; |
|---|
| .. | .. |
|---|
| 68 | 68 | .bcdmax = bcdDeviceMax, \ |
|---|
| 69 | 69 | } |
|---|
| 70 | 70 | |
|---|
| 71 | | -static struct ignore_entry ignore_ids[] = { |
|---|
| 71 | +static const struct ignore_entry ignore_ids[] = { |
|---|
| 72 | 72 | # include "unusual_alauda.h" |
|---|
| 73 | 73 | # include "unusual_cypress.h" |
|---|
| 74 | 74 | # include "unusual_datafab.h" |
|---|
| .. | .. |
|---|
| 92 | 92 | { |
|---|
| 93 | 93 | struct usb_device *udev; |
|---|
| 94 | 94 | unsigned vid, pid, bcd; |
|---|
| 95 | | - struct ignore_entry *p; |
|---|
| 95 | + const struct ignore_entry *p; |
|---|
| 96 | 96 | |
|---|
| 97 | 97 | udev = interface_to_usbdev(intf); |
|---|
| 98 | 98 | vid = le16_to_cpu(udev->descriptor.idVendor); |
|---|