]> git.baikalelectronics.ru Git - kernel.git/commit
usb: isp1301-omap: mark power_up as __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Thu, 28 Jan 2016 16:23:13 +0000 (17:23 +0100)
committerFelipe Balbi <balbi@kernel.org>
Fri, 4 Mar 2016 13:14:30 +0000 (15:14 +0200)
commitbd1dd7c19f96a9c5c88b4f47cfa4b072b99b8be2
tree6407d34e30fedacbd26d2d47f1dcb131cc0854cb
parentb817d699201c287675510bc4c90eabb7b7946dfd
usb: isp1301-omap: mark power_up as __maybe_unused

The power_up function is used for otg or udc mode, but nost when
the driver is only configured for host mode:

drivers/usb/phy/phy-isp1301-omap.c:261:13: error: 'power_up' defined but not used [-Werror=unused-function]

This marks the function __maybe_unused to avoid the warning and
silently drop the definition when it is unused.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
drivers/usb/phy/phy-isp1301-omap.c