diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-08-25 17:38:24 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-08-25 17:38:24 +0000 |
commit | 698c0e0e5aa0492ce9ecedce787d452e87adc6eb (patch) | |
tree | 14ae911908e8a1b2fe762bab6155a7fa3f47dc35 /src/Kconfig | |
parent | 2389cfe8a76600c3c75ffbba964fcd7c67f148c8 (diff) | |
download | coreboot-698c0e0e5aa0492ce9ecedce787d452e87adc6eb.tar.xz |
Make PCI_ROM_RUN a boolean (like it is elsewhere) which
is the correct choice. Avoids type problems in kconfig
Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4580 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index 32febc97bb..e1789b20a2 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -85,8 +85,8 @@ config LOGICAL_CPUS default 1 config PCI_ROM_RUN - int - default 0 + bool + default n config HT_CHAIN_UNITID_BASE int |