1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-02 17:22:22 +02:00

MIPS: bootm_qemu_mips.c: make checkpatch.pl clean

Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
This commit is contained in:
Daniel Schwierzeck
2012-06-03 23:46:04 +02:00
parent e51a6b7a6c
commit ed53010441

View File

@@ -29,7 +29,8 @@
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *images) int do_bootm_linux(int flag, int argc, char * const argv[],
bootm_headers_t *images)
{ {
void (*theKernel) (int, char **, char **, int *); void (*theKernel) (int, char **, char **, int *);
char *bootargs = getenv("bootargs"); char *bootargs = getenv("bootargs");
@@ -71,6 +72,7 @@ int do_bootm_linux(int flag, int argc, char * const argv[], bootm_headers_t *ima
printf("\nStarting kernel ...\n\n"); printf("\nStarting kernel ...\n\n");
theKernel(0, NULL, NULL, 0); theKernel(0, NULL, NULL, 0);
/* does not return */ /* does not return */
return 1; return 1;
} }