diff options
Diffstat (limited to 'include/bootm.h')
-rw-r--r-- | include/bootm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/bootm.h b/include/bootm.h index 10a1bd65a75..a9069d74404 100644 --- a/include/bootm.h +++ b/include/bootm.h @@ -137,7 +137,7 @@ int bootm_process_cmdline(char *buf, int maxlen, int flags); int bootm_process_cmdline_env(int flags); /** - * zboot_start() - Boot a zimage + * zboot_run() - Run through the various steps to boot a zimage * * Boot a zimage, given the component parts * @@ -150,8 +150,8 @@ int bootm_process_cmdline_env(int flags); * @cmdline: Command line to use for booting * Return: -EFAULT on error (normally it does not return) */ -int zboot_start(ulong addr, ulong size, ulong initrd, ulong initrd_size, - ulong base, char *cmdline); +int zboot_run(ulong addr, ulong size, ulong initrd, ulong initrd_size, + ulong base, char *cmdline); /* * zimage_get_kernel_version() - Get the version string from a kernel |