shutdown.c 274 B

12345678910111213141516
  1. #include "common.h"
  2. #include "io.h"
  3. #include "sdcard.h"
  4. #include "console.h"
  5. /*
  6. * Do a clean shutdown and reboot
  7. */
  8. no_return shutdown(unsigned int type)
  9. {
  10. /* Flush disk cache */
  11. disk_ioctl(0, CTRL_SYNC, NULL);
  12. con_puts("Rebooting...\n");
  13. reset(type);
  14. }