mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-26 15:50:57 +07:00
USB: musb: musb_gadget: fix sparse warning
Fix the following sparse warnings: drivers/usb/musb/musb_gadget.c:1161:5: warning: symbol 'musb_gadget_set_halt' was not declared. Should it be static? drivers/usb/musb/musb_gadget.c:1244:5: warning: symbol 'musb_gadget_set_wedge' was not declared. Should it be static? Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ff85494b3f
commit
1b6c3b0fb2
@ -1211,7 +1211,7 @@ static int musb_gadget_dequeue(struct usb_ep *ep, struct usb_request *request)
|
||||
*
|
||||
* exported to ep0 code
|
||||
*/
|
||||
int musb_gadget_set_halt(struct usb_ep *ep, int value)
|
||||
static int musb_gadget_set_halt(struct usb_ep *ep, int value)
|
||||
{
|
||||
struct musb_ep *musb_ep = to_musb_ep(ep);
|
||||
u8 epnum = musb_ep->current_epnum;
|
||||
@ -1296,7 +1296,7 @@ int musb_gadget_set_halt(struct usb_ep *ep, int value)
|
||||
/*
|
||||
* Sets the halt feature with the clear requests ignored
|
||||
*/
|
||||
int musb_gadget_set_wedge(struct usb_ep *ep)
|
||||
static int musb_gadget_set_wedge(struct usb_ep *ep)
|
||||
{
|
||||
struct musb_ep *musb_ep = to_musb_ep(ep);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user