mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
usb: gadget: fix two sparse warnings
drivers/usb/gadget/u_serial.c:1291:5: sparse: symbol \ 'userial_init' was not declared. Should it be static? drivers/usb/gadget/zero.c:66:25: sparse: symbol \ 'gzero_options' was not declared. Should it be static? Reported-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
a1ac29bd5d
commit
38b3ad5655
@ -1288,7 +1288,7 @@ void gserial_disconnect(struct gserial *gser)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(gserial_disconnect);
|
EXPORT_SYMBOL_GPL(gserial_disconnect);
|
||||||
|
|
||||||
int userial_init(void)
|
static int userial_init(void)
|
||||||
{
|
{
|
||||||
unsigned i;
|
unsigned i;
|
||||||
int status;
|
int status;
|
||||||
|
@ -63,7 +63,7 @@ static const char longname[] = "Gadget Zero";
|
|||||||
static bool loopdefault = 0;
|
static bool loopdefault = 0;
|
||||||
module_param(loopdefault, bool, S_IRUGO|S_IWUSR);
|
module_param(loopdefault, bool, S_IRUGO|S_IWUSR);
|
||||||
|
|
||||||
struct usb_zero_options gzero_options = {
|
static struct usb_zero_options gzero_options = {
|
||||||
.isoc_interval = 4,
|
.isoc_interval = 4,
|
||||||
.isoc_maxpacket = 1024,
|
.isoc_maxpacket = 1024,
|
||||||
.bulk_buflen = 4096,
|
.bulk_buflen = 4096,
|
||||||
|
Loading…
Reference in New Issue
Block a user