aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/blackfin/Kconfig6
-rw-r--r--arch/blackfin/Makefile1
2 files changed, 6 insertions, 1 deletions
diff --git a/arch/blackfin/Kconfig b/arch/blackfin/Kconfig
index b5027f575e0..554ac5827c1 100644
--- a/arch/blackfin/Kconfig
+++ b/arch/blackfin/Kconfig
@@ -182,7 +182,7 @@ config BF_REV_0_1
182 182
183config BF_REV_0_2 183config BF_REV_0_2
184 bool "0.2" 184 bool "0.2"
185 depends on (BF537 || BF536 || BF534) 185 depends on (BF52x || BF537 || BF536 || BF534 || BF54x)
186 186
187config BF_REV_0_3 187config BF_REV_0_3
188 bool "0.3" 188 bool "0.3"
@@ -196,6 +196,10 @@ config BF_REV_0_5
196 bool "0.5" 196 bool "0.5"
197 depends on (BF561 || BF533 || BF532 || BF531) 197 depends on (BF561 || BF533 || BF532 || BF531)
198 198
199config BF_REV_0_6
200 bool "0.6"
201 depends on (BF533 || BF532 || BF531)
202
199config BF_REV_ANY 203config BF_REV_ANY
200 bool "any" 204 bool "any"
201 205
diff --git a/arch/blackfin/Makefile b/arch/blackfin/Makefile
index eac0533d6e4..6bf50977850 100644
--- a/arch/blackfin/Makefile
+++ b/arch/blackfin/Makefile
@@ -67,6 +67,7 @@ rev-$(CONFIG_BF_REV_0_2) := 0.2
67rev-$(CONFIG_BF_REV_0_3) := 0.3 67rev-$(CONFIG_BF_REV_0_3) := 0.3
68rev-$(CONFIG_BF_REV_0_4) := 0.4 68rev-$(CONFIG_BF_REV_0_4) := 0.4
69rev-$(CONFIG_BF_REV_0_5) := 0.5 69rev-$(CONFIG_BF_REV_0_5) := 0.5
70rev-$(CONFIG_BF_REV_0_6) := 0.6
70rev-$(CONFIG_BF_REV_NONE) := none 71rev-$(CONFIG_BF_REV_NONE) := none
71rev-$(CONFIG_BF_REV_ANY) := any 72rev-$(CONFIG_BF_REV_ANY) := any
72 73