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/spc1920.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/spc1920.h')
-rw-r--r-- | include/configs/spc1920.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/spc1920.h b/include/configs/spc1920.h index 592cef1..6594849 100644 --- a/include/configs/spc1920.h +++ b/include/configs/spc1920.h @@ -374,7 +374,7 @@ #define CFG_BR3 ((CFG_SPC1920_HPI_BASE & BR_BA_MSK) | \ BR_MS_UPMA | \ BR_PS_16 | \ - BR_V); + BR_V) #define CFG_MAMR (MAMR_GPL_A4DIS | \ MAMR_RLFA_5X | \ @@ -405,7 +405,7 @@ OR_SCY_4_CLK | \ OR_TRLX) -#define CFG_BR4 ((CFG_SPC1920_FRAM_BASE & BR_BA_MSK) | BR_PS_8 | BR_V); +#define CFG_BR4 ((CFG_SPC1920_FRAM_BASE & BR_BA_MSK) | BR_PS_8 | BR_V) /* * PLD CS5 @@ -420,7 +420,7 @@ OR_SCY_0_CLK | \ OR_TRLX) -#define CFG_BR5_PRELIM ((CFG_SPC1920_PLD_BASE & BR_BA_MSK) | BR_PS_8 | BR_V); +#define CFG_BR5_PRELIM ((CFG_SPC1920_PLD_BASE & BR_BA_MSK) | BR_PS_8 | BR_V) /* * Internal Definitions |