wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 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 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 10 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | /* |
Marek Vasut | a63dd62 | 2012-10-03 08:54:12 +0000 | [diff] [blame] | 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 |
wdenk | a8f8891 | 2002-09-08 20:20:45 +0000 | [diff] [blame] | 18 | */ |
Marek Vasut | a63dd62 | 2012-10-03 08:54:12 +0000 | [diff] [blame] | 19 | int cleanup_before_linux(void) |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 20 | { |
wdenk | 3953988 | 2004-07-01 16:30:44 +0000 | [diff] [blame] | 21 | return 0; |
| 22 | } |