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
1 changed files with 14 additions and 12 deletions

View File

@ -29,7 +29,8 @@
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 *);
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");
theKernel(0, NULL, NULL, 0);
/* does not return */
return 1;
}