aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManjunath Goudar <manjunath.goudar@linaro.org>2013-06-13 13:24:07 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-06-17 16:54:47 -0400
commit9a0e5110f736437bb683f49ceac058a4fce9e47e (patch)
treec98687c5f33f6da91c930f96f30d230765338526
parent2dbc5c4c831418eb88eb1770c567ff21c9957aca (diff)
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 <manjunath.goudar@linaro.org> [swarren, reworked Manjunath's patches to split them more logically] Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Felipe Balbi <balbi@ti.com> Tested-by: Thierry Reding <thierry.reding@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/usb/phy/phy-ulpi-viewport.c2
1 files changed, 2 insertions, 0 deletions
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 @@
12 * 12 *
13 */ 13 */
14 14
15#include <linux/export.h>
15#include <linux/kernel.h> 16#include <linux/kernel.h>
16#include <linux/usb.h> 17#include <linux/usb.h>
17#include <linux/io.h> 18#include <linux/io.h>
@@ -78,3 +79,4 @@ struct usb_phy_io_ops ulpi_viewport_access_ops = {
78 .read = ulpi_viewport_read, 79 .read = ulpi_viewport_read,
79 .write = ulpi_viewport_write, 80 .write = ulpi_viewport_write,
80}; 81};
82EXPORT_SYMBOL_GPL(ulpi_viewport_access_ops);