reset.c 326 B

123456789101112131415161718
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2018, Bin Meng <bmeng.cn@gmail.com>
  4. */
  5. #include <common.h>
  6. #include <command.h>
  7. #include <hang.h>
  8. int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
  9. {
  10. printf("resetting ...\n");
  11. printf("reset not supported yet\n");
  12. hang();
  13. return 0;
  14. }