mirror of https://gitee.com/openkylin/linux.git
ARM: OMAP: Move omap_init_consistent_dma_size() to local common.h
We don't want to keep it in io.h as we want to remove io.h for omap2+ for the common zImage support. Signed-off-by: Tony Lindgren <tony@atomide.com>
This commit is contained in:
parent
258ee922d7
commit
a4f3419712
|
@ -58,5 +58,6 @@ void omap1_restart(char, const char *);
|
||||||
|
|
||||||
extern struct sys_timer omap1_timer;
|
extern struct sys_timer omap1_timer;
|
||||||
extern bool omap_32k_timer_init(void);
|
extern bool omap_32k_timer_init(void);
|
||||||
|
extern void __init omap_init_consistent_dma_size(void);
|
||||||
|
|
||||||
#endif /* __ARCH_ARM_MACH_OMAP1_COMMON_H */
|
#endif /* __ARCH_ARM_MACH_OMAP1_COMMON_H */
|
||||||
|
|
|
@ -133,6 +133,8 @@ void am33xx_map_io(void);
|
||||||
void omap4_map_io(void);
|
void omap4_map_io(void);
|
||||||
void ti81xx_map_io(void);
|
void ti81xx_map_io(void);
|
||||||
|
|
||||||
|
extern void __init omap_init_consistent_dma_size(void);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* omap_test_timeout - busy-loop, testing a condition
|
* omap_test_timeout - busy-loop, testing a condition
|
||||||
* @cond: condition to test until it evaluates to true
|
* @cond: condition to test until it evaluates to true
|
||||||
|
|
|
@ -266,8 +266,6 @@ extern void omap_writeb(u8 v, u32 pa);
|
||||||
extern void omap_writew(u16 v, u32 pa);
|
extern void omap_writew(u16 v, u32 pa);
|
||||||
extern void omap_writel(u32 v, u32 pa);
|
extern void omap_writel(u32 v, u32 pa);
|
||||||
|
|
||||||
extern void __init omap_init_consistent_dma_size(void);
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue