Revision | ab784696fc4d73d55d0e0776e8bf748d477a1082 (tree) |
---|---|
Time | 2014-02-07 12:18:06 |
Author | Sonic Zhang <sonic.zhang@anal...> |
Commiter | Sonic Zhang |
blackfin: The logic of the BF609 macro is opposite.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
@@ -49,7 +49,7 @@ program_async_controller(ADI_BOOT_DATA *bs) | ||
49 | 49 | |
50 | 50 | serial_putc('a'); |
51 | 51 | |
52 | -#ifdef __ADSPBF60x__ | |
52 | +#ifndef __ADSPBF60x__ | |
53 | 53 | /* Program the async banks controller. */ |
54 | 54 | #ifdef EBIU_AMGCTL |
55 | 55 | bfin_write_EBIU_AMBCTL0(CONFIG_EBIU_AMBCTL0_VAL); |
@@ -74,7 +74,7 @@ program_async_controller(ADI_BOOT_DATA *bs) | ||
74 | 74 | |
75 | 75 | serial_putc('c'); |
76 | 76 | |
77 | -#else /* __ADSPBF60x__ */ | |
77 | +#else /* __ADSPBF60x__ */ | |
78 | 78 | /* Program the static memory controller. */ |
79 | 79 | # ifdef CONFIG_SMC_GCTL_VAL |
80 | 80 | bfin_write_SMC_GCTL(CONFIG_SMC_GCTL_VAL); |
@@ -116,7 +116,7 @@ program_async_controller(ADI_BOOT_DATA *bs) | ||
116 | 116 | bfin_write_SMC_B3ETIM(CONFIG_SMC_B3ETIM_VAL); |
117 | 117 | # endif |
118 | 118 | |
119 | -#endif | |
119 | +#endif /* __ADSPBF60x__ */ | |
120 | 120 | serial_putc('d'); |
121 | 121 | } |
122 | 122 |