• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revisionab784696fc4d73d55d0e0776e8bf748d477a1082 (tree)
Time2014-02-07 12:18:06
AuthorSonic Zhang <sonic.zhang@anal...>
CommiterSonic Zhang

Log Message

blackfin: The logic of the BF609 macro is opposite.

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

Change Summary

Incremental Difference

--- a/arch/blackfin/cpu/initcode.h
+++ b/arch/blackfin/cpu/initcode.h
@@ -49,7 +49,7 @@ program_async_controller(ADI_BOOT_DATA *bs)
4949
5050 serial_putc('a');
5151
52-#ifdef __ADSPBF60x__
52+#ifndef __ADSPBF60x__
5353 /* Program the async banks controller. */
5454 #ifdef EBIU_AMGCTL
5555 bfin_write_EBIU_AMBCTL0(CONFIG_EBIU_AMBCTL0_VAL);
@@ -74,7 +74,7 @@ program_async_controller(ADI_BOOT_DATA *bs)
7474
7575 serial_putc('c');
7676
77-#else /* __ADSPBF60x__ */
77+#else /* __ADSPBF60x__ */
7878 /* Program the static memory controller. */
7979 # ifdef CONFIG_SMC_GCTL_VAL
8080 bfin_write_SMC_GCTL(CONFIG_SMC_GCTL_VAL);
@@ -116,7 +116,7 @@ program_async_controller(ADI_BOOT_DATA *bs)
116116 bfin_write_SMC_B3ETIM(CONFIG_SMC_B3ETIM_VAL);
117117 # endif
118118
119-#endif
119+#endif /* __ADSPBF60x__ */
120120 serial_putc('d');
121121 }
122122