Commit 46ce0d9a authored by Mike Frysinger's avatar Mike Frysinger Committed by Bryan Wu

Blackfin arch: fix default silicon rev selection so it works for all supported parts

Signed-off-by: default avatarMike Frysinger <vapier.adi@gmail.com>
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent cd88b4dc
...@@ -168,10 +168,9 @@ endchoice ...@@ -168,10 +168,9 @@ endchoice
choice choice
prompt "Silicon Rev" prompt "Silicon Rev"
default BF_REV_0_1 if BF527 default BF_REV_0_1 if (BF52x || BF54x)
default BF_REV_0_2 if BF537 default BF_REV_0_2 if (BF534 || BF536 || BF537)
default BF_REV_0_3 if BF533 default BF_REV_0_3 if (BF531 || BF532 || BF533 || BF561)
default BF_REV_0_0 if BF549
config BF_REV_0_0 config BF_REV_0_0
bool "0.0" bool "0.0"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment