blob: 8380e4e00613b8c2cd8e4fc587226b51d6dba2e1 [file] [log] [blame]
Simon Glassef0ab852017-04-15 13:11:31 -06001/**
2 * Copyright (c) 2017 Google, Inc
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/arch/bootrom.h>
9
10void back_to_bootrom(void)
11{
Philipp Tomsich9b5545d2017-06-29 11:28:15 +020012#if CONFIG_IS_ENABLED(LIBCOMMON_SUPPORT)
13 puts("Returning to boot ROM...\n");
Simon Glassef0ab852017-04-15 13:11:31 -060014#endif
15 _back_to_bootrom_s();
16}