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/M5282EVB.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/M5282EVB.h')
-rw-r--r-- | include/configs/M5282EVB.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/M5282EVB.h b/include/configs/M5282EVB.h index 5cc64c1..1bc877a 100644 --- a/include/configs/M5282EVB.h +++ b/include/configs/M5282EVB.h @@ -246,6 +246,6 @@ #define CFG_PEHLPAR 0xC0 #define CFG_PUAPAR 0x0F /* UA0..UA3 = Uart 0 +1 */ #define CFG_DDRUA 0x05 -#define CFG_PJPAR 0xFF; +#define CFG_PJPAR 0xFF #endif /* _CONFIG_M5282EVB_H */ |