diff options
author | Detlev Zundel <dzu@denx.de> | 2008-06-20 22:26:24 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-07-02 16:49:52 +0200 |
commit | 5981ebd32017e062b08aa6747cf591276f2db779 (patch) | |
tree | bf276019b983e5ed460c3441e82338d233ed8840 | |
parent | a7a5982cd0f3482f88225af4da7795bc4f6cb9bc (diff) | |
download | u-boot-imx-5981ebd32017e062b08aa6747cf591276f2db779.zip u-boot-imx-5981ebd32017e062b08aa6747cf591276f2db779.tar.gz u-boot-imx-5981ebd32017e062b08aa6747cf591276f2db779.tar.bz2 |
fdt: Fix typo in variable name.
Signed-off-by: Detlev Zundel <dzu@denx.de>
-rw-r--r-- | common/fdt_support.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/fdt_support.c b/common/fdt_support.c index e58b294..3828228 100644 --- a/common/fdt_support.c +++ b/common/fdt_support.c @@ -63,7 +63,7 @@ int fdt_find_and_setprop(void *fdt, const char *node, const char *prop, } #ifdef CONFIG_OF_STDOUT_VIA_ALIAS -static int fdt_fixup_stdout(void *fdt, int choosenoff) +static int fdt_fixup_stdout(void *fdt, int chosenoff) { int err = 0; #ifdef CONFIG_CONS_INDEX @@ -82,7 +82,7 @@ static int fdt_fixup_stdout(void *fdt, int choosenoff) err = -FDT_ERR_NOSPACE; if (p) { memcpy(p, path, len); - err = fdt_setprop(fdt, choosenoff, + err = fdt_setprop(fdt, chosenoff, "linux,stdout-path", p, len); free(p); } |