reset.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 2001 by Ralf Baechle
  7.  * Copyright (C) 2001 MIPS Technologies, Inc.
  8.  */
  9. #include <linux/kernel.h>
  10. #include <linux/types.h>
  11. #include <linux/reboot.h>
  12. #include <asm/reboot.h>
  13. /*
  14.  * Urgs ...  Too many MIPS machines to handle this in a generic way.
  15.  * So handle all using function pointers to machine specific
  16.  * functions.
  17.  */
  18. void (*_machine_restart)(char *command);
  19. void (*_machine_halt)(void);
  20. void (*_machine_power_off)(void);
  21. void machine_restart(char *command)
  22. {
  23. _machine_restart(command);
  24. }
  25. void machine_halt(void)
  26. {
  27. _machine_halt();
  28. }
  29. void machine_power_off(void)
  30. {
  31. _machine_power_off();
  32. }