diff options
author | Felipe Balbi <balbi@ti.com> | 2011-11-15 02:53:35 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-15 13:20:52 -0500 |
commit | f35e0d5614b9dbf76ec7b5cbd464914a77c01c88 (patch) | |
tree | d4acb1369fd392a102ac208e13e409f849352446 /drivers/usb/storage/karma.c | |
parent | 9d35214b415812372a7b1ba1091097b043837604 (diff) |
usb: storage: karma: fix sparse warning
Fix the following sparse warning:
| drivers/usb/storage/karma.c:62:22: warning: symbol
| 'karma_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/usb/storage/karma.c')
-rw-r--r-- | drivers/usb/storage/karma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/karma.c b/drivers/usb/storage/karma.c index ba1b78906880..fb5bfb00d797 100644 --- a/drivers/usb/storage/karma.c +++ b/drivers/usb/storage/karma.c | |||
@@ -59,7 +59,7 @@ static int rio_karma_init(struct us_data *us); | |||
59 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | 59 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ |
60 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | 60 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } |
61 | 61 | ||
62 | struct usb_device_id karma_usb_ids[] = { | 62 | static struct usb_device_id karma_usb_ids[] = { |
63 | # include "unusual_karma.h" | 63 | # include "unusual_karma.h" |
64 | { } /* Terminating entry */ | 64 | { } /* Terminating entry */ |
65 | }; | 65 | }; |