Commit 1db4e9bb authored by Paul Mundt's avatar Paul Mundt

sh: Don't enable FPU for SH4AL-DSP.

This leads to invalid configurations where both FPU and DSP support
can be enabled in the same kernel, resulting in build failure.
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent d5815933
...@@ -118,7 +118,7 @@ endchoice ...@@ -118,7 +118,7 @@ endchoice
config SH_FPU config SH_FPU
bool "FPU support" bool "FPU support"
depends on CPU_SH4 depends on CPU_HAS_FPU
default y default y
help help
Selecting this option will enable support for SH processors that Selecting this option will enable support for SH processors that
...@@ -199,6 +199,9 @@ config CPU_HAS_PTEA ...@@ -199,6 +199,9 @@ config CPU_HAS_PTEA
config CPU_HAS_DSP config CPU_HAS_DSP
bool bool
config CPU_HAS_FPU
bool
endmenu endmenu
menu "Board support" menu "Board support"
......
...@@ -18,6 +18,7 @@ config CPU_SH4 ...@@ -18,6 +18,7 @@ config CPU_SH4
select CPU_HAS_INTEVT select CPU_HAS_INTEVT
select CPU_HAS_SR_RB select CPU_HAS_SR_RB
select CPU_HAS_PTEA if (!CPU_SUBTYPE_ST40 && !CPU_SH4A) || CPU_SHX2 select CPU_HAS_PTEA if (!CPU_SUBTYPE_ST40 && !CPU_SH4A) || CPU_SHX2
select CPU_HAS_FPU if !CPU_SH4AL_DSP
config CPU_SH4A config CPU_SH4A
bool bool
......
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