mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 16:50:53 +07: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>
14 lines
293 B
C
14 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 */
|
|
|