Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cuboot-amigaone.c
Go to the documentation of this file.
1 /*
2  * Old U-boot compatibility for AmigaOne
3  *
4  * Author: Gerhard Pircher ([email protected])
5  *
6  * Based on cuboot-83xx.c
7  * Copyright (c) 2007 Freescale Semiconductor, Inc.
8  *
9  * This program is free software; you can redistribute it and/or modify it
10  * under the terms of the GNU General Public License version 2 as published
11  * by the Free Software Foundation.
12  */
13 
14 #include "ops.h"
15 #include "stdio.h"
16 #include "cuboot.h"
17 
18 #include "ppcboot.h"
19 
20 static bd_t bd;
21 
22 static void platform_fixups(void)
23 {
26 }
27 
28 void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,
29  unsigned long r6, unsigned long r7)
30 {
31  CUBOOT_INIT();
34  platform_ops.fixups = platform_fixups;
35 }