mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-07 15:18:15 +00:00
xhci: fix non static symbol warning
Fixes the following sparse warning: drivers/usb/host/xhci-ring.c:608:6: warning: symbol 'xhci_unmap_td_bounce_buffer' was not declared. Should it be static? Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0d58a1a047
commit
2d6d5769f8
1 changed files with 2 additions and 2 deletions
|
@ -586,8 +586,8 @@ static void xhci_giveback_urb_in_irq(struct xhci_hcd *xhci,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci, struct xhci_ring *ring,
|
static void xhci_unmap_td_bounce_buffer(struct xhci_hcd *xhci,
|
||||||
struct xhci_td *td)
|
struct xhci_ring *ring, struct xhci_td *td)
|
||||||
{
|
{
|
||||||
struct device *dev = xhci_to_hcd(xhci)->self.controller;
|
struct device *dev = xhci_to_hcd(xhci)->self.controller;
|
||||||
struct xhci_segment *seg = td->bounce_seg;
|
struct xhci_segment *seg = td->bounce_seg;
|
||||||
|
|
Loading…
Add table
Reference in a new issue