bootrom.c 273 B

12345678910111213141516
  1. /**
  2. * Copyright (c) 2017 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <asm/arch/bootrom.h>
  8. void back_to_bootrom(void)
  9. {
  10. #if CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT)
  11. puts("Returning to boot ROM...\n");
  12. #endif
  13. _back_to_bootrom_s();
  14. }