From patchwork Tue Aug 25 16:55:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: unify types in kconfig Date: Tue, 25 Aug 2009 16:55:13 -0000 From: Patrick Georgi X-Patchwork-Id: 188 Message-Id: <1251219313.28873.12.camel@tetris> To: coreboot@coreboot.org Hi, attached patch makes PCI_ROM_RUN a boolean (like it is elsewhere), which is the correct choice, too. Avoids type problems in kconfig Signed-off-by: Patrick Georgi Acked-by: Myles Watson Acked-by: Uwe Hermann Index: src/Kconfig =================================================================== --- src/Kconfig (Revision 4577) +++ src/Kconfig (Arbeitskopie) @@ -85,8 +85,8 @@ default 1 config PCI_ROM_RUN - int - default 0 + bool + default n config HT_CHAIN_UNITID_BASE int Index: src/mainboard/amd/serengeti_cheetah/Kconfig =================================================================== --- src/mainboard/amd/serengeti_cheetah/Kconfig (Revision 4577) +++ src/mainboard/amd/serengeti_cheetah/Kconfig (Arbeitskopie) @@ -189,7 +189,7 @@ depends on BOARD_AMD_SERENGETI_CHEETAH config PCI_ROM_RUN - int - default 1 + bool + default y depends on BOARD_AMD_SERENGETI_CHEETAH