Commit ab784696fc4d73d55d0e0776e8bf748d477a1082

Authored by Sonic Zhang
1 parent dbf3de2dd2

blackfin: The logic of the BF609 macro is opposite.

Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>

Showing 1 changed file with 3 additions and 3 deletions Side-by-side Diff

arch/blackfin/cpu/initcode.h
... ... @@ -49,7 +49,7 @@
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 @@
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 @@
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