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