Move PCI settings to drivers/pci

Change-Id: I92ccbcdd1292f8f4f017b45968c2204c06e6f73e
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2015-08-06 07:34:50 -04:00
parent 6c9a846eae
commit abb4404689
3 changed files with 22 additions and 18 deletions

View file

@ -289,24 +289,6 @@ config XIP
endmenu
menu "Bus options (PCI etc.)"
config PCI
bool
# omit prompt to signify a "hidden" option
default n
help
This options enables support of PCI bus enumeration for device
drivers.
config PCI_DEBUG
bool
prompt "Enable PCI debugging"
depends on PCI
default n
help
This options enables PCI debigging functions
endmenu
source "arch/x86/core/Kconfig"

View file

@ -47,4 +47,6 @@ source "drivers/timer/Kconfig"
source "drivers/random/Kconfig"
source "drivers/pci/Kconfig"
endmenu

20
drivers/pci/Kconfig Normal file
View file

@ -0,0 +1,20 @@
menu "PCI Settings"
depends on X86_32
config PCI
bool
default n
depends on X86_32
help
This options enables support of PCI bus enumeration for device
drivers.
config PCI_DEBUG
bool
prompt "Enable PCI debugging"
depends on PCI
default n
help
This options enables PCI debigging functions
endmenu