From: Manjunath Goudar Date: Thu, 13 Jun 2013 17:24:07 +0000 (-0600) Subject: usb: phy: export ulpi_viewport_access_ops X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=9a0e5110f736437bb683f49ceac058a4fce9e47e;p=deliverable%2Flinux.git usb: phy: export ulpi_viewport_access_ops In order to build a ULPI PHY driver as a module, this symbol needs to be exported. Signed-off-by: Manjunath Goudar [swarren, reworked Manjunath's patches to split them more logically] Signed-off-by: Stephen Warren Acked-by: Arnd Bergmann Acked-by: Felipe Balbi Tested-by: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/phy/phy-ulpi-viewport.c b/drivers/usb/phy/phy-ulpi-viewport.c index c5ba7e5423fc..7c22a5390fc3 100644 --- a/drivers/usb/phy/phy-ulpi-viewport.c +++ b/drivers/usb/phy/phy-ulpi-viewport.c @@ -12,6 +12,7 @@ * */ +#include #include #include #include @@ -78,3 +79,4 @@ struct usb_phy_io_ops ulpi_viewport_access_ops = { .read = ulpi_viewport_read, .write = ulpi_viewport_write, }; +EXPORT_SYMBOL_GPL(ulpi_viewport_access_ops);