public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] move the flash setup to "#ifndef CONFIG_SYS_NO_FLASH"
@ 2010-07-19  3:34 xiangfu
  2010-07-19 18:56 ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: xiangfu @ 2010-07-19  3:34 UTC (permalink / raw)
  To: u-boot

From: Xiangfu Liu <xiangfu@sharism.cc>

Hi Wolfgang Denk

in my Ben Nanonote board. there is no flash. I got a error
about no "CONFIG_SYS_FLASH_BASE" define. so I move this 
line to "#ifndef CONFIG_SYS_NO_FLASH"

I have tested with "MAKEALL". no warning or error relate this
patch.

this patch is base on  [master] branch commit:
  1f82ff4777f360e92aa37bbbed647f7b9d9d2044


Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
---
 arch/mips/lib/board.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c
index b2d113e..0af09c6 100644
--- a/arch/mips/lib/board.c
+++ b/arch/mips/lib/board.c
@@ -349,9 +349,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
 	size = flash_init();
 	display_flash_config (size);
 	bd->bi_flashsize = size;
+	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #endif
 
-	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
 	bd->bi_flashoffset = monitor_flash_len;	/* reserved area for U-Boot */
 #else
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] move the flash setup to "#ifndef CONFIG_SYS_NO_FLASH"
@ 2010-07-19  3:32 xiangfu
  0 siblings, 0 replies; 8+ messages in thread
From: xiangfu @ 2010-07-19  3:32 UTC (permalink / raw)
  To: u-boot

From: Xiangfu Liu <xiangfu@sharism.cc>

Hi Wolfgang Denk

in my Ben Nanonote board. there is no flash. I got a error
about no "CONFIG_SYS_FLASH_BASE" define. so I move this 
line to "#ifndef CONFIG_SYS_NO_FLASH"

I have tested with "MAKEALL". no warning or error relate this
patch.

this patch is base on  [master] branch commit:
  1f82ff4777f360e92aa37bbbed647f7b9d9d2044


Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
---
 arch/mips/lib/board.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c
index b2d113e..0af09c6 100644
--- a/arch/mips/lib/board.c
+++ b/arch/mips/lib/board.c
@@ -349,9 +349,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
 	size = flash_init();
 	display_flash_config (size);
 	bd->bi_flashsize = size;
+	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #endif
 
-	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
 	bd->bi_flashoffset = monitor_flash_len;	/* reserved area for U-Boot */
 #else
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] move the flash setup to "#ifndef CONFIG_SYS_NO_FLASH"
@ 2010-07-19  3:18 xiangfu
  0 siblings, 0 replies; 8+ messages in thread
From: xiangfu @ 2010-07-19  3:18 UTC (permalink / raw)
  To: u-boot

From: Xiangfu Liu <xiangfu@sharism.cc>

Hi Wolfgang Denk

in my Ben Nanonote board. there is no flash. I got a error
about no "CONFIG_SYS_FLASH_BASE" define. so I move this 
line to "#ifndef CONFIG_SYS_NO_FLASH"

I have tested with "MAKEALL". no warning or error relate this
patch.

this patch is base on  [master] branch commit:
  1f82ff4777f360e92aa37bbbed647f7b9d9d2044


Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
---
 arch/mips/lib/board.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c
index b2d113e..0af09c6 100644
--- a/arch/mips/lib/board.c
+++ b/arch/mips/lib/board.c
@@ -349,9 +349,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
 	size = flash_init();
 	display_flash_config (size);
 	bd->bi_flashsize = size;
+	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #endif
 
-	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
 	bd->bi_flashoffset = monitor_flash_len;	/* reserved area for U-Boot */
 #else
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread
* [U-Boot] [PATCH] move the flash setup to "#ifndef CONFIG_SYS_NO_FLASH"
@ 2010-07-19  3:14 xiangfu
  2010-07-19 18:55 ` Wolfgang Denk
  0 siblings, 1 reply; 8+ messages in thread
From: xiangfu @ 2010-07-19  3:14 UTC (permalink / raw)
  To: u-boot

From: Xiangfu Liu <xiangfu@sharism.cc>

Hi Wolfgang Denk

in my Ben Nanonote board. there is no flash. I got a error
about no "CONFIG_SYS_FLASH_BASE" define. so I move this 
line to "#ifndef CONFIG_SYS_NO_FLASH"

I have tested with "MAKEALL". no warning or error relate this
patch.

this patch is base on  [master] branch commit:
  1f82ff4777f360e92aa37bbbed647f7b9d9d2044


Signed-off-by: Xiangfu Liu <xiangfu@sharism.cc>
---
 arch/mips/lib/board.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/mips/lib/board.c b/arch/mips/lib/board.c
index b2d113e..0af09c6 100644
--- a/arch/mips/lib/board.c
+++ b/arch/mips/lib/board.c
@@ -349,9 +349,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
 	size = flash_init();
 	display_flash_config (size);
 	bd->bi_flashsize = size;
+	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #endif
 
-	bd->bi_flashstart = CONFIG_SYS_FLASH_BASE;
 #if CONFIG_SYS_MONITOR_BASE == CONFIG_SYS_FLASH_BASE
 	bd->bi_flashoffset = monitor_flash_len;	/* reserved area for U-Boot */
 #else
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-07-20  2:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-19  3:34 [U-Boot] [PATCH] move the flash setup to "#ifndef CONFIG_SYS_NO_FLASH" xiangfu
2010-07-19 18:56 ` Wolfgang Denk
2010-07-20  2:32   ` "Xiangfu Liu(刘向富)"
  -- strict thread matches above, loose matches on Subject: below --
2010-07-19  3:32 xiangfu
2010-07-19  3:18 xiangfu
2010-07-19  3:14 xiangfu
2010-07-19 18:55 ` Wolfgang Denk
2010-07-20  2:33   ` "Xiangfu Liu(刘向富)"

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox