aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/ehci-q.c
diff options
context:
space:
mode:
authorTony Prisk <linux@prisktech.co.nz>2013-03-27 01:28:00 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-28 14:18:54 -0400
commit4d053fdac3c44ec8c7a78c810292a156abf84971 (patch)
treeb9771222f59e13b4f5dc605cbefcccd8d9460249 /drivers/usb/host/ehci-q.c
parentab1f046a1908d60d2bad20c3ac0f9e71db72318f (diff)
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 <linux@prisktech.co.nz> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/ehci-q.c')
-rw-r--r--drivers/usb/host/ehci-q.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c
index 50787a389fa8..7562d76f9c53 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)
1293 } 1293 }
1294} 1294}
1295 1295
1296#ifdef CONFIG_PM
1296/* The root hub is suspended; unlink all the async QHs */ 1297/* The root hub is suspended; unlink all the async QHs */
1297static void unlink_empty_async_suspended(struct ehci_hcd *ehci) 1298static void unlink_empty_async_suspended(struct ehci_hcd *ehci)
1298{ 1299{
@@ -1305,6 +1306,7 @@ static void unlink_empty_async_suspended(struct ehci_hcd *ehci)
1305 } 1306 }
1306 start_iaa_cycle(ehci); 1307 start_iaa_cycle(ehci);
1307} 1308}
1309#endif
1308 1310
1309/* makes sure the async qh will become idle */ 1311/* makes sure the async qh will become idle */
1310/* caller must own ehci->lock */ 1312/* caller must own ehci->lock */