diff options
author | Felipe Balbi <balbi@ti.com> | 2011-11-15 07:53:28 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-11-15 18:20:45 (GMT) |
commit | 3358be9adf368b54b3f95a3e2556f7aa1ae106d9 (patch) | |
tree | 567abc7c38017161fc95573580738a79327aed80 /drivers/usb/storage | |
parent | ff231db811803ef3292532d1d87eaf6882a26cc4 (diff) | |
download | linux-3358be9adf368b54b3f95a3e2556f7aa1ae106d9.tar.xz |
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')
-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 42d0eae..9ce3bba 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); { USB_DEVICE_VER(id_vendor, id_product, bcdDeviceMin, bcdDeviceMax), \ .driver_info = (flags)|(USB_US_TYPE_STOR<<24) } -struct usb_device_id alauda_usb_ids[] = { +static struct usb_device_id alauda_usb_ids[] = { # include "unusual_alauda.h" { } /* Terminating entry */ }; |