diff options
author | Felipe Balbi <balbi@ti.com> | 2011-11-15 07:53:34 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-15 18:20:51 (GMT) |
commit | 9d35214b415812372a7b1ba1091097b043837604 (patch) | |
tree | 1e01b981f7a4a58611e752c21bb4363b945cc091 /drivers | |
parent | e7724baf78685759a31216362660b70d7786fc77 (diff) | |
download | linux-9d35214b415812372a7b1ba1091097b043837604.tar.xz |
usb: storage: jumpshot: fix sparse warning
Fix the following sparse warning:
| drivers/usb/storage/jumpshot.c:74:22: warning: symbol
| 'jumpshot_usb_ids' was not declared. Should it
| be static?
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/storage/jumpshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/jumpshot.c b/drivers/usb/storage/jumpshot.c index 6168596..5ef55c7 100644 --- a/drivers/usb/storage/jumpshot.c +++ b/drivers/usb/storage/jumpshot.c @@ -71,7 +71,7 @@ MODULE_LICENSE("GPL"); { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } -struct usb_device_id jumpshot_usb_ids[] = { +static struct usb_device_id jumpshot_usb_ids[] = { # include "unusual_jumpshot.h" { } /* Terminating entry */ }; |