setup.h 448 B

12345678910111213141516171819202122
  1. /*
  2. * These symbols are needed for board-specific files to call their
  3. * own cpu-specific files
  4. */
  5. #ifndef __ASM_ARCH_SETUP_H
  6. #define __ASM_ARCH_SETUP_H
  7. #include <asm/mach/time.h>
  8. #include <linux/init.h>
  9. #ifdef CONFIG_NOMADIK_8815
  10. extern void cpu8815_map_io(void);
  11. extern void cpu8815_platform_init(void);
  12. extern void cpu8815_init_irq(void);
  13. extern struct sys_timer nomadik_timer;
  14. #endif /* NOMADIK_8815 */
  15. #endif /* __ASM_ARCH_SETUP_H */