fdt: Fix typo in variable name.

Signed-off-by: Detlev Zundel <dzu@denx.de>
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 @@
 }
 
 #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 @@
 			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);
 			}