xref: /openbmc/u-boot/arch/arm/cpu/arm720t/cpu.c (revision 53ab4af3)
1 /*
2  * (C) Copyright 2002
3  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4  * Marius Groeger <mgroeger@sysgo.de>
5  *
6  * (C) Copyright 2002
7  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
8  * Alex Zuepke <azu@sysgo.de>
9  *
10  * SPDX-License-Identifier:	GPL-2.0+
11  */
12 
13 /*
14  * cleanup_before_linux() - Prepare the CPU to jump to Linux
15  *
16  * This function is called just before we call Linux, it
17  * prepares the processor for linux
18  */
19 int cleanup_before_linux(void)
20 {
21 	return 0;
22 }
23