]> asedeno.scripts.mit.edu Git - linux.git/commit
usb: ehci: mark unlink_empty_async_suspended() as __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Thu, 28 Mar 2013 21:09:46 +0000 (21:09 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 28 Mar 2013 21:49:53 +0000 (14:49 -0700)
commit70b55c2ad0e5c8bbbb36cedf6a37f9d029cfd403
treefa0f740d7f1a268703bfb8994b028c6c25b62f14
parent05768918b9a122ce21bd55950df5054ff6c57f28
usb: ehci: mark unlink_empty_async_suspended() as __maybe_unused

Patch 4d053fdac3 "usb: ehci: unlink_empty_async_suspended() only used
with CONFIG_PM" tried to hide the unlink_empty_async_suspended function
inside of an #ifdef to work around an unused function warning.

Unfortunately that had the effect of introducing a new warning:

drivers/usb/host/ehci-q.c:1297:13: warning: 'unlink_empty_async_suspended'
declared 'static' but never defined [-Wunused-function]

While we could add another #ifdef around the function declaration to avoid
this, a nicer solution is to mark it as __maybe_unused, which will let
gcc silently drop the function definition when it is not needed.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/ehci-q.c