diff mbox

[U-Boot] fdt: rename IMAAGE_OF_BOARD_SETUP to IMAGE_OF_BOARD_SETUP

Message ID 1390980556-23712-1-git-send-email-yamada.m@jp.panasonic.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Masahiro Yamada Jan. 29, 2014, 7:29 a.m. UTC
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Simon Glass <sjg@chromium.org>
---
 common/image-fdt.c | 2 +-
 include/image.h    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Comments

Simon Glass Jan. 31, 2014, 8:13 p.m. UTC | #1
On 29 January 2014 00:29, Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Cc: Simon Glass <sjg@chromium.org>

Acked-by: Simon Glass <sjg@chromium.org>

A long-standing typo that I fixed locally when I applied, and forgot
about upstream :-(
Tom Rini Feb. 19, 2014, 3:49 p.m. UTC | #2
On Wed, Jan 29, 2014 at 04:29:16PM +0900, Masahiro Yamada wrote:

> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
> Cc: Simon Glass <sjg@chromium.org>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/common/image-fdt.c b/common/image-fdt.c
index 6f9ce7d..a54a919 100644
--- a/common/image-fdt.c
+++ b/common/image-fdt.c
@@ -463,7 +463,7 @@  int image_setup_libfdt(bootm_headers_t *images, void *blob,
 		return -1;
 	}
 	arch_fixup_memory_node(blob);
-	if (IMAAGE_OF_BOARD_SETUP)
+	if (IMAGE_OF_BOARD_SETUP)
 		ft_board_setup(blob, gd->bd);
 	fdt_fixup_ethernet(blob);
 
diff --git a/include/image.h b/include/image.h
index 7de2bb2..86c74f9 100644
--- a/include/image.h
+++ b/include/image.h
@@ -99,9 +99,9 @@  struct lmb;
 #endif
 
 #ifdef CONFIG_OF_BOARD_SETUP
-# define IMAAGE_OF_BOARD_SETUP		1
+# define IMAGE_OF_BOARD_SETUP		1
 #else
-# define IMAAGE_OF_BOARD_SETUP		0
+# define IMAGE_OF_BOARD_SETUP		0
 #endif
 
 /*