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