diff options
author | Peter Chen <peter.chen@freescale.com> | 2013-01-17 18:03:16 +0800 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2013-01-18 14:08:21 +0200 |
commit | c2c9caa94748657ac8b47428ef4e95ccb646cea7 (patch) | |
tree | d7832f85b833db082a70a7068f01f8dababd9cdf /drivers/usb/gadget/fsl_usb2_udc.h | |
parent | f0ea8834df058371d1e59012d4a67488429fb4a2 (diff) | |
download | lwn-c2c9caa94748657ac8b47428ef4e95ccb646cea7.tar.gz lwn-c2c9caa94748657ac8b47428ef4e95ccb646cea7.zip |
usb: gadget: fsl_mxc_udc: replace MX35_IO_ADDRESS to ioremap
As mach/hardware.h is deleted, we can't visit platform code at driver.
It has no phy driver to combine with this controller, so it has to use
ioremap to map phy address as a workaround.
Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget/fsl_usb2_udc.h')
-rw-r--r-- | drivers/usb/gadget/fsl_usb2_udc.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/gadget/fsl_usb2_udc.h b/drivers/usb/gadget/fsl_usb2_udc.h index f61a967f7082..c6703bb07b23 100644 --- a/drivers/usb/gadget/fsl_usb2_udc.h +++ b/drivers/usb/gadget/fsl_usb2_udc.h @@ -592,15 +592,16 @@ static inline struct ep_queue_head *get_qh_by_ep(struct fsl_ep *ep) struct platform_device; #ifdef CONFIG_ARCH_MXC int fsl_udc_clk_init(struct platform_device *pdev); -void fsl_udc_clk_finalize(struct platform_device *pdev); +int fsl_udc_clk_finalize(struct platform_device *pdev); void fsl_udc_clk_release(void); #else static inline int fsl_udc_clk_init(struct platform_device *pdev) { return 0; } -static inline void fsl_udc_clk_finalize(struct platform_device *pdev) +static inline int fsl_udc_clk_finalize(struct platform_device *pdev) { + return 0; } static inline void fsl_udc_clk_release(void) { |