diff options
author | Selvamuthukumar <selva.muthukumar@e-coninfotech.com> | 2008-10-08 18:12:20 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-14 23:03:03 +0200 |
commit | 03e2dbb18e858e2f7a6aaa437f290f3690d02d51 (patch) | |
tree | 37a8266525d547ecefb4f366713fb5d761f51403 /include/configs/MPC8313ERDB.h | |
parent | b2934a56650e9a6c54432f9ce6dc36757967385e (diff) | |
download | u-boot-imx-03e2dbb18e858e2f7a6aaa437f290f3690d02d51.zip u-boot-imx-03e2dbb18e858e2f7a6aaa437f290f3690d02d51.tar.gz u-boot-imx-03e2dbb18e858e2f7a6aaa437f290f3690d02d51.tar.bz2 |
Remove unwanted ';' at end of define.
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 <selva.muthukumar@e-coninfotech.com>
continuation of the theme based on git grep "^#define CFG_.*;$" include/
Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
Diffstat (limited to 'include/configs/MPC8313ERDB.h')
-rw-r--r-- | include/configs/MPC8313ERDB.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/configs/MPC8313ERDB.h b/include/configs/MPC8313ERDB.h index 09bb87e..30c4243 100644 --- a/include/configs/MPC8313ERDB.h +++ b/include/configs/MPC8313ERDB.h @@ -153,12 +153,12 @@ | SDRAM_CFG_32_BE ) /* 0x43080000 */ #endif -#define CFG_SDRAM_CFG2 0x00401000; +#define CFG_SDRAM_CFG2 0x00401000 /* set burst length to 8 for 32-bit data path */ #define CFG_DDR_MODE ( ( 0x4448 << SDRAM_MODE_ESD_SHIFT ) \ | ( 0x0632 << SDRAM_MODE_SD_SHIFT ) ) /* 0x44480632 */ -#define CFG_DDR_MODE_2 0x8000C000; +#define CFG_DDR_MODE_2 0x8000C000 #define CFG_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05 /*0x02000000*/ |