IOAPIC defaults to y when LOAPIC is enabled
For as long as the IOAPIC and LOAPIC code is coupled (as it currently is), enabling LOAPIC must select IOAPIC to be enabled as well. If future commits separate the two, then the "select IOAPIC" can be dropped. Change-Id: Ibe7e6b86e5add19b8b3cc68ebecce760d8914c86 Signed-off-by: Peter Mitsis <peter.mitsis@windriver.com>
This commit is contained in:
parent
d7c32911c4
commit
b643468280
1 changed files with 3 additions and 2 deletions
|
@ -41,14 +41,15 @@ config PIC
|
||||||
config LOAPIC
|
config LOAPIC
|
||||||
bool "LOAPIC"
|
bool "LOAPIC"
|
||||||
default n
|
default n
|
||||||
|
select IOAPIC
|
||||||
depends on X86_32
|
depends on X86_32
|
||||||
help
|
help
|
||||||
This option selects local APIC as the interrupt controller.
|
This option selects local APIC as the interrupt controller.
|
||||||
|
|
||||||
config IOAPIC
|
config IOAPIC
|
||||||
bool "IOAPIC"
|
bool "IOAPIC"
|
||||||
default n
|
default y
|
||||||
depends on X86_32 && LOAPIC
|
depends on LOAPIC
|
||||||
help
|
help
|
||||||
This option signifies that the target has an IO-APIC device. This
|
This option signifies that the target has an IO-APIC device. This
|
||||||
capability allows IO-APIC-dependent code to be included.
|
capability allows IO-APIC-dependent code to be included.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue