Skip to content

Commit

Permalink
Blackfin arch: fix default silicon rev selection so it works for all …
Browse files Browse the repository at this point in the history
…supported parts

Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Mike Frysinger authored and Bryan Wu committed Oct 9, 2008
1 parent cd88b4d commit 46ce0d9
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions arch/blackfin/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -168,10 +168,9 @@ endchoice

choice
prompt "Silicon Rev"
default BF_REV_0_1 if BF527
default BF_REV_0_2 if BF537
default BF_REV_0_3 if BF533
default BF_REV_0_0 if BF549
default BF_REV_0_1 if (BF52x || BF54x)
default BF_REV_0_2 if (BF534 || BF536 || BF537)
default BF_REV_0_3 if (BF531 || BF532 || BF533 || BF561)

config BF_REV_0_0
bool "0.0"
Expand Down

0 comments on commit 46ce0d9

Please sign in to comment.