system.h 574 B

123456789101112131415161718192021222324252627
  1. /*
  2. * arch/arm/mach-s3c2410/include/mach/system.h
  3. *
  4. * Copyright (C) 2006 Simtec Electronics
  5. * Ben Dooks <ben@simtec.co.uk>
  6. *
  7. * KS8695 - System function defines and includes
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #ifndef __ASM_ARCH_SYSTEM_H
  14. #define __ASM_ARCH_SYSTEM_H
  15. static void arch_idle(void)
  16. {
  17. /*
  18. * This should do all the clock switching
  19. * and wait for interrupt tricks,
  20. */
  21. cpu_do_idle();
  22. }
  23. #endif