system.h 470 B

123456789101112131415161718192021
  1. /*
  2. * linux/arch/arm/mach-mmp/include/mach/system.h
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __ASM_MACH_SYSTEM_H
  9. #define __ASM_MACH_SYSTEM_H
  10. static inline void arch_idle(void)
  11. {
  12. cpu_do_idle();
  13. }
  14. static inline void arch_reset(char mode, const char *cmd)
  15. {
  16. cpu_reset(0);
  17. }
  18. #endif /* __ASM_MACH_SYSTEM_H */