system.h 315 B

1234567891011121314151617
  1. /*
  2. * Copied from arch/arm/mach-sa1100/include/mach/system.h
  3. * Copyright (c) 1999 Nicolas Pitre <nico@fluxnic.net>
  4. */
  5. #ifndef __ASM_ARCH_SYSTEM_H
  6. #define __ASM_ARCH_SYSTEM_H
  7. #include <asm/proc-fns.h>
  8. static inline void arch_idle(void)
  9. {
  10. cpu_do_idle();
  11. }
  12. extern void (*arch_reset)(char, const char *);
  13. #endif