Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 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> |
wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | /* |
Marek Vasut | a63dd62 | 2012-10-03 08:54:12 +0000 | [diff] [blame] | 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 |
wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 17 | */ |
Marek Vasut | a63dd62 | 2012-10-03 08:54:12 +0000 | [diff] [blame] | 18 | int cleanup_before_linux(void) |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 19 | { |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 20 | return 0; |
| 21 | } |