blob: ece09c83a4a35551f266b8dd5231cb3e8c0b74d6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenka8f88912002-09-08 20:20:45 +00002/*
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>
wdenka8f88912002-09-08 20:20:45 +000010 */
11
12/*
Marek Vasuta63dd622012-10-03 08:54:12 +000013 * 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
wdenka8f88912002-09-08 20:20:45 +000017 */
Marek Vasuta63dd622012-10-03 08:54:12 +000018int cleanup_before_linux(void)
wdenk39539882004-07-01 16:30:44 +000019{
wdenk39539882004-07-01 16:30:44 +000020 return 0;
21}