Re: [U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-22 Thread Shinya Kuribayashi
Jason McMullan wrote: --- lib_mips/board.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) As you submitted this patch and its description separately, I manually combined them with two CodingStyle fixes. Now you seem to be getting along with git :-) Applied, thanks. Will be

Re: [U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-16 Thread Shinya Kuribayashi
Hi Jason, Jason McMullan wrote: diff --git a/lib_mips/board.c b/lib_mips/board.c index 1645f2c..e33070d 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -28,6 +28,7 @@ #include version.h #include net.h #include environment.h +#include nand.h This will break build. According to

[U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-15 Thread Jason McMullan
--- lib_mips/board.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/lib_mips/board.c b/lib_mips/board.c index 1645f2c..7237842 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -48,6 +48,8 @@ extern int incaip_set_cpuclk(void); extern ulong uboot_end_data;

[U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-15 Thread Jason McMullan
This patch add the standard 'nand_init()' call to the mips generic 'board_init_r()' call, bringing MIPS in line with the other architectures. Signed-off-by: Jason McMullan [EMAIL PROTECTED] - This SF.net email is sponsored

Re: [U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-15 Thread Scott Wood
On Thu, May 15, 2008 at 10:08:31AM -0400, Jason McMullan wrote: --- lib_mips/board.c |7 +++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/lib_mips/board.c b/lib_mips/board.c index 1645f2c..7237842 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -48,6

[U-Boot-Users] [PATCH] mips: Call 'nand_init()' in generic board initialization when CONFIG_CMD_NAND is set

2008-05-15 Thread Jason McMullan
--- lib_mips/board.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/lib_mips/board.c b/lib_mips/board.c index 1645f2c..e33070d 100644 --- a/lib_mips/board.c +++ b/lib_mips/board.c @@ -28,6 +28,7 @@ #include version.h #include net.h #include environment.h