From: Tony Prisk Date: Wed, 27 Mar 2013 05:28:00 +0000 (+1300) Subject: usb: ehci: unlink_empty_async_suspended() only used with CONFIG_PM X-Git-Tag: v3.10-rc1~190^2~106 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4d053fdac3;p=~emulex%2Finfiniband.git usb: ehci: unlink_empty_async_suspended() only used with CONFIG_PM Compiling with !CONFIG_PM generates an unused function warning on unlink_empty_async_suspended(). Enclose the function in a #ifdef CONFIG_PM Signed-off-by: Tony Prisk Acked-by: Alan Stern Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c index 50787a389fa..7562d76f9c5 100644 --- a/drivers/usb/host/ehci-q.c +++ b/drivers/usb/host/ehci-q.c @@ -1293,6 +1293,7 @@ static void unlink_empty_async(struct ehci_hcd *ehci) } } +#ifdef CONFIG_PM /* The root hub is suspended; unlink all the async QHs */ static void unlink_empty_async_suspended(struct ehci_hcd *ehci) { @@ -1305,6 +1306,7 @@ static void unlink_empty_async_suspended(struct ehci_hcd *ehci) } start_iaa_cycle(ehci); } +#endif /* makes sure the async qh will become idle */ /* caller must own ehci->lock */