diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-09-13 09:46:09 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2012-10-14 22:03:11 -0400 |
commit | 39ef6340c702ea734ef5a9a38858e96e05b4b5cc (patch) | |
tree | f69eb463507547a80a97cfc2aa782b9842a6f591 /arch/arm/mach-imx/ulpi.h | |
parent | c045e3f137362fa34b337cdca66d3f6000a3b094 (diff) |
ARM: imx: include ulpi.h rather than mach/ulpi.h
Rename mach-imx/include/mach/ulpi.h to mach-imx/ulpi.h, and update
users to include ulpi.h rather than mach/ulpi.h.
Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-imx/ulpi.h')
-rw-r--r-- | arch/arm/mach-imx/ulpi.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/ulpi.h b/arch/arm/mach-imx/ulpi.h new file mode 100644 index 000000000000..42bdaca6d7d9 --- /dev/null +++ b/arch/arm/mach-imx/ulpi.h | |||
@@ -0,0 +1,16 @@ | |||
1 | #ifndef __MACH_ULPI_H | ||
2 | #define __MACH_ULPI_H | ||
3 | |||
4 | #ifdef CONFIG_USB_ULPI | ||
5 | struct usb_phy *imx_otg_ulpi_create(unsigned int flags); | ||
6 | #else | ||
7 | static inline struct usb_phy *imx_otg_ulpi_create(unsigned int flags) | ||
8 | { | ||
9 | return NULL; | ||
10 | } | ||
11 | #endif | ||
12 | |||
13 | extern struct usb_phy_io_ops mxc_ulpi_access_ops; | ||
14 | |||
15 | #endif /* __MACH_ULPI_H */ | ||
16 | |||