]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Blackfin: move CONFIG_BFIN_CPU to board config.mk
authorMike Frysinger <vapier@gentoo.org>
Mon, 9 Aug 2010 21:57:47 +0000 (17:57 -0400)
committerMike Frysinger <vapier@gentoo.org>
Sat, 2 Oct 2010 20:00:38 +0000 (16:00 -0400)
The CONFIG_BFIN_CPU option is largely used in the build system, so move
it out of the board config.h and into the board config.mk.  It'd be nice
to keep everything in the config.h, but the patch to extract that value
early was rejected.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53 files changed:
arch/blackfin/config.mk
arch/blackfin/include/asm/config.h
arch/blackfin/lib/board.c
board/bf518f-ezbrd/config.mk
board/bf526-ezbrd/config.mk
board/bf527-ad7160-eval/config.mk
board/bf527-ezkit/config.mk
board/bf533-ezkit/config.mk
board/bf533-stamp/config.mk
board/bf537-minotaur/config.mk
board/bf537-pnav/config.mk
board/bf537-srv1/config.mk
board/bf537-stamp/config.mk
board/bf538f-ezkit/config.mk
board/bf548-ezkit/config.mk
board/bf561-acvilon/config.mk
board/bf561-ezkit/config.mk
board/blackstamp/config.mk
board/cm-bf527/config.mk
board/cm-bf533/config.mk
board/cm-bf537e/config.mk
board/cm-bf537u/config.mk
board/cm-bf548/config.mk
board/cm-bf561/config.mk
board/ibf-dsp561/config.mk
board/ip04/config.mk
board/tcm-bf518/config.mk
board/tcm-bf537/config.mk
include/configs/bf518f-ezbrd.h
include/configs/bf526-ezbrd.h
include/configs/bf527-ad7160-eval.h
include/configs/bf527-ezkit.h
include/configs/bf533-ezkit.h
include/configs/bf533-stamp.h
include/configs/bf537-minotaur.h
include/configs/bf537-pnav.h
include/configs/bf537-srv1.h
include/configs/bf537-stamp.h
include/configs/bf538f-ezkit.h
include/configs/bf548-ezkit.h
include/configs/bf561-acvilon.h
include/configs/bf561-ezkit.h
include/configs/blackstamp.h
include/configs/cm-bf527.h
include/configs/cm-bf533.h
include/configs/cm-bf537e.h
include/configs/cm-bf537u.h
include/configs/cm-bf548.h
include/configs/cm-bf561.h
include/configs/ibf-dsp561.h
include/configs/ip04.h
include/configs/tcm-bf518.h
include/configs/tcm-bf537.h

index 137834e7eed093b901dbf57178d483d95f1931f9..e531edbfa981b7bd44a1c1927103eadeb14208c6 100644 (file)
@@ -25,7 +25,6 @@ CROSS_COMPILE ?= bfin-uclinux-
 
 STANDALONE_LOAD_ADDR = 0x1000 -m elf32bfin
 
-CONFIG_BFIN_CPU := $(strip $(subst ",,$(CONFIG_BFIN_CPU)))
 CONFIG_BFIN_BOOT_MODE := $(strip $(subst ",,$(CONFIG_BFIN_BOOT_MODE)))
 CONFIG_ENV_OFFSET := $(strip $(subst ",,$(CONFIG_ENV_OFFSET)))
 CONFIG_ENV_SIZE := $(strip $(subst ",,$(CONFIG_ENV_SIZE)))
@@ -36,9 +35,8 @@ PLATFORM_CPPFLAGS += -DCONFIG_BLACKFIN
 LDFLAGS += --gc-sections -m elf32bfin
 PLATFORM_RELFLAGS += -ffunction-sections -fdata-sections
 
-ifneq (,$(CONFIG_BFIN_CPU))
+PLATFORM_CPPFLAGS += -DBFIN_CPU='"$(CONFIG_BFIN_CPU)"'
 PLATFORM_RELFLAGS += -mcpu=$(CONFIG_BFIN_CPU)
-endif
 
 ifneq ($(CONFIG_BFIN_BOOT_MODE),BFIN_BOOT_BYPASS)
 ALL += $(obj)u-boot.ldr
index 74556850573afc4ab67865258830cf78bcb6f0b5..215e0f29183fbb51e0631b0d9c28d68a6e71e8fb 100644 (file)
@@ -9,11 +9,6 @@
 #ifndef __ASM_BLACKFIN_CONFIG_POST_H__
 #define __ASM_BLACKFIN_CONFIG_POST_H__
 
-/* Sanity check CONFIG_BFIN_CPU */
-#ifndef CONFIG_BFIN_CPU
-# error CONFIG_BFIN_CPU: your board config needs to define this
-#endif
-
 #ifndef CONFIG_BFIN_SCRATCH_REG
 # define CONFIG_BFIN_SCRATCH_REG retn
 #endif
index 7643250da374599ca966fbe39d45a02733fc93e6..94fbbfe99ce0fb9be3496ccc48a7369f4d2c3afa 100644 (file)
@@ -254,7 +254,7 @@ void board_init_f(ulong bootflag)
        memset((void *)bd, 0, sizeof(bd_t));
 
        bd->bi_r_version = version_string;
-       bd->bi_cpu = MK_STR(CONFIG_BFIN_CPU);
+       bd->bi_cpu = BFIN_CPU;
        bd->bi_board_name = BFIN_BOARD_NAME;
        bd->bi_vco = get_vco();
        bd->bi_cclk = get_cclk();
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..30b92a3c43a2b8d1f1ec5330fd39e38fafa84f26 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf518-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..aaf4541feb8e213b552b0bb488eb2c8c9f5dd49c 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf526-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..9784810af7815f03f61a8a22ae12e8ffbd177728 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf527-0.2
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..78eebff324618ff22639d195312e088c7805f5a9 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf527-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..60ec6b6c141af87cbb097531b9a886df2ef2196d 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf533-0.3
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..60ec6b6c141af87cbb097531b9a886df2ef2196d 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf533-0.3
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index d8308433b00965bd0a42422a1564d8b2662b5e96..59e9a9c447506fc84ff5c0fd83513bdd811d0d7e 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 # Set some default LDR flags based on boot mode.
 LDR_FLAGS-BFIN_BOOT_UART       := --port g --gpio 6
 LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE))
index eaa09ff79589447c10001fc6188e42a035f17d92..ce8ef3b499742b26082e11b6a41a17585a69ef1a 100644 (file)
@@ -26,5 +26,7 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 # Set some default LDR flags based on boot mode.
 LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE))
index d8308433b00965bd0a42422a1564d8b2662b5e96..59e9a9c447506fc84ff5c0fd83513bdd811d0d7e 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 # Set some default LDR flags based on boot mode.
 LDR_FLAGS-BFIN_BOOT_UART       := --port g --gpio 6
 LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE))
index 57668291155113e9dbe6abb8149e592bbd2603ce..3bac0adf3b4f674d7873106a662240101d2f5d2b 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..170a2d56db9b216e99b3a72dce971d3ae1facbc3 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf538-0.4
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index ce96c0d47935db5eb4e5e9874d7a9b2d56a80bdb..ec3c28e0b78bccb07c67c428f7518ad2c148efa8 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf548-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index a90b193388094d464e88d29110288e1ded854d61..221de6524f6b8a822bc61b7b8e0c36eafff6e353 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf561-0.5
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index a90b193388094d464e88d29110288e1ded854d61..ff19190a26f597ca590f49c6a4b890b07ba89906 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf561-0.3
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index eaa09ff79589447c10001fc6188e42a035f17d92..5035cb9c584bd7c7264ee63766bfe8a1a95da0a0 100644 (file)
@@ -26,5 +26,7 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf532-0.5
+
 # Set some default LDR flags based on boot mode.
 LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE))
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..78eebff324618ff22639d195312e088c7805f5a9 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf527-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..60ec6b6c141af87cbb097531b9a886df2ef2196d 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf533-0.3
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..1281da4befe84feb2c1ba4e7ff8a5dcd887362d9 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..1281da4befe84feb2c1ba4e7ff8a5dcd887362d9 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index f071a39d75e00d66b6157ee52b48842e297c74e2..bce60e5baa2b07b2ddc4157a25e19dcd039781c4 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf548-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index a90b193388094d464e88d29110288e1ded854d61..ff19190a26f597ca590f49c6a4b890b07ba89906 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf561-0.3
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 77c888b3bd39e9b626584cfc4004dcb82d8ad89f..1fec4d020dc25118ef0a3b60af15ad3b38fffb78 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf561-0.5
+
 # Set some default LDR flags based on boot mode.
 LDR_FLAGS-BFIN_BOOT_PARA := --bits 16
 LDR_FLAGS += $(LDR_FLAGS-$(CONFIG_BFIN_BOOT_MODE))
index 57668291155113e9dbe6abb8149e592bbd2603ce..683101b8279ea47636614866d28cd43d46f08e36 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf532-0.5
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 3f9d41f3715e6c9055842244e1551f8ffbaa5644..30b92a3c43a2b8d1f1ec5330fd39e38fafa84f26 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf518-0.0
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index bc046f129f0d12d52225cf8fccad93e5aa688c60..1281da4befe84feb2c1ba4e7ff8a5dcd887362d9 100644 (file)
@@ -26,6 +26,8 @@
 # This is not actually used for Blackfin boards so do not change it
 #TEXT_BASE = do-not-use-me
 
+CONFIG_BFIN_CPU = bf537-0.2
+
 CFLAGS_lib += -O2
 CFLAGS_lib/lzma += -O2
 
index 6eec1c91a7e870c9a731ee497e1d13ef44d51e95..64ca9ed43935fa2676b0467b80f8af52d5ca1863 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf518-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 82396d0ed2582f685f3aee687c0ccdf20519355e..eeca9caf8bcb9a6cd422e6ca432a100e8158c056 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf526-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index eb3a2b7dc1188b23aaad7cf7b9f1f4a1c5c8f214..fbcf019051cfe2e2daaba9ba93ac87d653d2a0e0 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf527-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_SPI_MASTER
 
 
index 07e4ce86e1287c1e28c6516e2b6285c9acbdb4d9..54fc063f9a19a30eb295c50c335bd123477445e9 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf527-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 95d3afa85cc5faaf8ff4c82b6c00640dd4eb07be..e1bb594438888867669d6492af6ba7fb73d5f156 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf533-0.3
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index f39bfee0a4fbf32e44c0cd9080f854d80b8007fa..b8cea99959d39a0a2e368c3b2ecf5418ec41065b 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf533-0.3
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 86aa1f61e66148c857074b0885a24c5a29068dd5..0ba29bc0cd8b53de94825ae8b8213310af767ddf 100644 (file)
@@ -24,7 +24,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_SPI_MASTER
 
 
index 39bbb41fb3e0ee2719fafbbb57599efe6f34bbfe..30607d91fd118a48412aa486df6bb16d3d88aa9f 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_SPI_MASTER
 
 
index 7e9dd36bce25ab37db1d82c57938524d539e8873..559428f4845fe85a2473ccb5f6c9042b1cad04b0 100644 (file)
@@ -24,7 +24,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_SPI_MASTER
 
 
index fc9784e0830730a8bf095bc1a7bbb18b400f03ca..60087da11424bdbdeac0fc884080afa0169a3daa 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 1c14b6bdd37a69b55a0b8c327938a38be3e6d30b..1d475647aacaf225245b7c3cc365a8b81972f6fd 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf538-0.4
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 60cca0c07a37ea69aad2b611ba2194d0e88836e6..d299dc18f5f1830e24e0b7bb45b68f7659a6ce3c 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf548-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 0c0204fbd79c76ce51c2e751c71b1c520befae8e..2b12c3fbe11c31c9fb8790a781eb2482acf877b3 100644 (file)
@@ -12,7 +12,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU                                bf561-0.5
 #define CONFIG_BFIN_BOOT_MODE          BFIN_BOOT_BYPASS
 
 
index 4e293b58a820f5e73154e6b6d2c1986fabf1e3b4..1557e14f5237a219091c262507353a842044f54c 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf561-0.3
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 85f08ea88804dfa1d1bcaa3fdcd64173ee93f07c..3f5c95917d00f3cb413106bcc25a331ff15c13f2 100644 (file)
@@ -24,7 +24,6 @@
 /* CPU Options
  * Be sure to set the Silicon Revision Correctly
  */
-#define CONFIG_BFIN_CPU                bf532-0.5
 #define CONFIG_BFIN_BOOT_MODE  BFIN_BOOT_SPI_MASTER
 
 /*
index e0c6d53b2c7abf7273b5e303c68eba718dc203c9..84c93099ce97ae2d292e63631dc7e3f9dc13568d 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf527-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 75152964b61d8c358971630357199d80f866a953..dbc4a5b1002a22dcd8bda33279e51a9f4b576ca2 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf533-0.3
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 742df9c0199159fe6b4b9399d7d27ac3323935ac..df3fe48f65585102484207fbc7a7708853ee76a7 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index 9def99f728302bd865b6fedc700c4b26169a1b54..e5b0ecfc5e9c5c2ad1bcf5a95a7ff31a127dbe0e 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index fa62a8e9c1da26bec526e475af39cd853e8f2e0d..27b1cc519ccfd4ef9bbfd85aefd406892d51de5a 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf548-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index c60401c8fecb3a33058b720820f58e9fed837f2d..8c350bc2639957332ea81843349b1531a574e813 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf561-0.3
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 53b5197112ed10bcd3eec35128d7f3735305a114..cd856ac79c3870c3c6b8d239f9372c127e012078 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf561-0.5
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS
 
 
index c024d78c18ac8a2bc972019a5e8f364be6774da2..528363c6b492adb48d139e47b98d7a703cc29b6f 100644 (file)
@@ -20,7 +20,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf532-0.5
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_NAND
 
 
index 52055e80dcbd03fb6b34800aedcf2228c54fbdc8..042d78915c81f58260edc573db66db45cc941cde 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf518-0.0
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_PARA
 
 
index 24ce8f854a1876be4320697d4d1724391084cf61..dceff308b8b387bf601a8ac395f7434d43140183 100644 (file)
@@ -11,7 +11,6 @@
 /*
  * Processor Settings
  */
-#define CONFIG_BFIN_CPU             bf537-0.2
 #define CONFIG_BFIN_BOOT_MODE       BFIN_BOOT_BYPASS