All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCHv2] usb: ehci: unlink_empty_async_suspended() only used with CONFIG_PM
@ 2013-03-27  5:28 ` Tony Prisk
  0 siblings, 0 replies; 12+ messages in thread
From: Tony Prisk @ 2013-03-27  5:28 UTC (permalink / raw)
  To: linux-arm-kernel

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>
---
v2:
Tidy up blank line as requested by Alan Stern
 drivers/usb/host/ehci-q.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c
index 23d1369..1ea4de1 100644
--- a/drivers/usb/host/ehci-q.c
+++ b/drivers/usb/host/ehci-q.c
@@ -1316,6 +1316,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)
 {
@@ -1328,6 +1329,7 @@ static void unlink_empty_async_suspended(struct ehci_hcd *ehci)
 	}
 	start_iaa_cycle(ehci, false);
 }
+#endif
 
 /* makes sure the async qh will become idle */
 /* caller must own ehci->lock */
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2013-03-29 14:05 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-27  5:28 [PATCHv2] usb: ehci: unlink_empty_async_suspended() only used with CONFIG_PM Tony Prisk
2013-03-27  5:28 ` Tony Prisk
2013-03-28 21:09 ` [PATCH] usb: ehci: mark unlink_empty_async_suspended() as __maybe_unused Arnd Bergmann
2013-03-28 21:09   ` Arnd Bergmann
2013-03-28 21:16   ` Arnd Bergmann
2013-03-28 21:16     ` Arnd Bergmann
2013-03-28 21:20     ` Tony Prisk
2013-03-28 21:20       ` Tony Prisk
2013-03-29 14:05       ` Alan Stern
2013-03-29 14:05         ` Alan Stern
2013-03-29 14:05   ` Alan Stern
2013-03-29 14:05     ` Alan Stern

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.