From 9a0e5110f736437bb683f49ceac058a4fce9e47e Mon Sep 17 00:00:00 2001 From: Manjunath Goudar Date: Thu, 13 Jun 2013 11:24:07 -0600 Subject: [PATCH] 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 --- drivers/usb/phy/phy-ulpi-viewport.c | 2 ++ 1 file changed, 2 insertions(+) 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);