mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
SPARC: Fixed compiler error introduced by commit c160a95447
This patch fixes a build error for the SPARC platform. It was
introduced by commit c160a95447
.
Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
This commit is contained in:
parent
4c60259899
commit
af5eb847a1
1 changed files with 2 additions and 1 deletions
|
@ -27,6 +27,7 @@
|
||||||
#include <asm/byteorder.h>
|
#include <asm/byteorder.h>
|
||||||
#include <asm/prom.h>
|
#include <asm/prom.h>
|
||||||
#include <asm/cache.h>
|
#include <asm/cache.h>
|
||||||
|
#include <image.h>
|
||||||
|
|
||||||
#define PRINT_KERNEL_HEADER
|
#define PRINT_KERNEL_HEADER
|
||||||
|
|
||||||
|
@ -178,7 +179,7 @@ int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t * images)
|
||||||
* From now on the only code in u-boot that will be
|
* From now on the only code in u-boot that will be
|
||||||
* executed is the PROM code.
|
* executed is the PROM code.
|
||||||
*/
|
*/
|
||||||
kernel(kernel_arg_promvec, (void *)ep);
|
kernel(kernel_arg_promvec, (void *)images->ep);
|
||||||
|
|
||||||
/* It will never come to this... */
|
/* It will never come to this... */
|
||||||
while (1) ;
|
while (1) ;
|
||||||
|
|
Loading…
Add table
Reference in a new issue