mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
641dfe8b73
The platform_data header usb-ehci-mxc.h has a lot of stuff used by only IMX platform code. They shouldn't be really in this header but a IMX platform local header. Create ehci.h and move these stuff into it. Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
13 lines
293 B
C
13 lines
293 B
C
#ifndef __INCLUDE_ASM_ARCH_MXC_EHCI_H
|
|
#define __INCLUDE_ASM_ARCH_MXC_EHCI_H
|
|
|
|
struct mxc_usbh_platform_data {
|
|
int (*init)(struct platform_device *pdev);
|
|
int (*exit)(struct platform_device *pdev);
|
|
|
|
unsigned int portsc;
|
|
struct usb_phy *otg;
|
|
};
|
|
|
|
#endif /* __INCLUDE_ASM_ARCH_MXC_EHCI_H */
|
|
|