Re: [U-Boot] [PATCH] Remove unwanted ';' at end of define.

2008-10-14 Thread Wolfgang Denk
Dear Kim Phillips, In message <[EMAIL PROTECTED]> you wrote: > On Tue, 7 Oct 2008 19:03:05 +0530 > Selvamuthukumar <[EMAIL PROTECTED]> wrote: > > > -#define CFG_SDRAM_CFG2 0x00401000; > > +#define CFG_SDRAM_CFG2 0x00401000 > > eh, that's pretty bad - but wait, there's mo

Re: [U-Boot] [PATCH] Remove unwanted ';' at end of define.

2008-10-08 Thread Kim Phillips
On Tue, 7 Oct 2008 19:03:05 +0530 Selvamuthukumar <[EMAIL PROTECTED]> wrote: > -#define CFG_SDRAM_CFG2 0x00401000; > +#define CFG_SDRAM_CFG2 0x00401000 eh, that's pretty bad - but wait, there's more!: [EMAIL PROTECTED] u-boot (master)]$ git grep "^#define CFG_.*;$" i

[U-Boot] [PATCH] Remove unwanted ';' at end of define.

2008-10-07 Thread Selvamuthukumar
Currently this is not creating any problem. But it will result in compilation error when used as below. printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2); Signed-off-by: Selvamuthukumar <[EMAIL PROTECTED]> --- include/configs/MPC8313ERDB.h |4 ++-- 1 files changed, 2 insertions(+), 2 deletio