usb: gadget: ss_ep_in_comp_desc can be static
drivers/usb/gadget/legacy/printer.c:222:34: sparse: symbol 'ss_ep_in_comp_desc' was not declared. Should it be static? drivers/usb/gadget/legacy/printer.c:234:34: sparse: symbol 'ss_ep_out_comp_desc' was not declared. Should it be static? Signed-off-by: Fengguang Wu <fengguang.wu@intel.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
This commit is contained in:
parent
7b0f000b2f
commit
ef24d749f2
|
@ -219,7 +219,7 @@ static struct usb_endpoint_descriptor ss_ep_in_desc = {
|
|||
.wMaxPacketSize = cpu_to_le16(1024),
|
||||
};
|
||||
|
||||
struct usb_ss_ep_comp_descriptor ss_ep_in_comp_desc = {
|
||||
static struct usb_ss_ep_comp_descriptor ss_ep_in_comp_desc = {
|
||||
.bLength = sizeof(ss_ep_in_comp_desc),
|
||||
.bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
|
||||
};
|
||||
|
@ -231,7 +231,7 @@ static struct usb_endpoint_descriptor ss_ep_out_desc = {
|
|||
.wMaxPacketSize = cpu_to_le16(1024),
|
||||
};
|
||||
|
||||
struct usb_ss_ep_comp_descriptor ss_ep_out_comp_desc = {
|
||||
static struct usb_ss_ep_comp_descriptor ss_ep_out_comp_desc = {
|
||||
.bLength = sizeof(ss_ep_out_comp_desc),
|
||||
.bDescriptorType = USB_DT_SS_ENDPOINT_COMP,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue