summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorFelipe Balbi2011-11-15 08:53:35 +0100
committerGreg Kroah-Hartman2011-11-15 19:20:52 +0100
commitf35e0d5614b9dbf76ec7b5cbd464914a77c01c88 (patch)
treed4acb1369fd392a102ac208e13e409f849352446 /drivers
parentusb: storage: jumpshot: fix sparse warning (diff)
downloadkernel-qcow2-linux-f35e0d5614b9dbf76ec7b5cbd464914a77c01c88.tar.gz
kernel-qcow2-linux-f35e0d5614b9dbf76ec7b5cbd464914a77c01c88.tar.xz
kernel-qcow2-linux-f35e0d5614b9dbf76ec7b5cbd464914a77c01c88.zip
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')
-rw-r--r--drivers/usb/storage/karma.c2
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);
{ USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \
.driver_info = (flags)|(USB_US_TYPE_STOR<<24) }
-struct usb_device_id karma_usb_ids[] = {
+static struct usb_device_id karma_usb_ids[] = {
# include "unusual_karma.h"
{ } /* Terminating entry */
};