diff options
author | Felipe Balbi <balbi@ti.com> | 2011-11-15 02:53:28 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-15 13:20:45 -0500 |
commit | 3358be9adf368b54b3f95a3e2556f7aa1ae106d9 (patch) | |
tree | 567abc7c38017161fc95573580738a79327aed80 /drivers/usb/storage/alauda.c | |
parent | ff231db811803ef3292532d1d87eaf6882a26cc4 (diff) |
usb: storage: alauda: fix sparse warnings
Fix the following warning:
| drivers/usb/storage/alauda.c:142:22: warning: symbol
| 'alauda_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/alauda.c')
-rw-r--r-- | drivers/usb/storage/alauda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/storage/alauda.c b/drivers/usb/storage/alauda.c index 42d0eaed4a01..9ce3bbab6d20 100644 --- a/drivers/usb/storage/alauda.c +++ b/drivers/usb/storage/alauda.c | |||
@@ -139,7 +139,7 @@ static int init_alauda(struct us_data *us); | |||
139 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ | 139 | { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ |
140 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } | 140 | .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } |
141 | 141 | ||
142 | struct usb_device_id alauda_usb_ids[] = { | 142 | static struct usb_device_id alauda_usb_ids[] = { |
143 | # include "unusual_alauda.h" | 143 | # include "unusual_alauda.h" |
144 | { } /* Terminating entry */ | 144 | { } /* Terminating entry */ |
145 | }; | 145 | }; |