mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 04:46:01 +01:00
common:autoboot:modify function parameters
the blob parameter of the function process_fdt_options has not been invoked in the function body and should be changed to void type Signed-off-by: Shenlin Liang <liangshenlin@eswincomputing.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ee4f86cc04
commit
c9c42ad21f
@ -422,7 +422,7 @@ static int abortboot(int bootdelay)
|
|||||||
return abort;
|
return abort;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void process_fdt_options(const void *blob)
|
static void process_fdt_options(void)
|
||||||
{
|
{
|
||||||
#ifdef CONFIG_TEXT_BASE
|
#ifdef CONFIG_TEXT_BASE
|
||||||
ulong addr;
|
ulong addr;
|
||||||
@ -474,7 +474,7 @@ const char *bootdelay_process(void)
|
|||||||
s = env_get("bootcmd");
|
s = env_get("bootcmd");
|
||||||
|
|
||||||
if (IS_ENABLED(CONFIG_OF_CONTROL))
|
if (IS_ENABLED(CONFIG_OF_CONTROL))
|
||||||
process_fdt_options(gd->fdt_blob);
|
process_fdt_options();
|
||||||
stored_bootdelay = bootdelay;
|
stored_bootdelay = bootdelay;
|
||||||
|
|
||||||
return s;
|
return s;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user