device/pci_early.c: Drop some guards
With PCI_DEV() always defined it is no longer necessary to exclude this code from building. Change-Id: I58a6348750d240aa6024599f7b1af1449f31e8ac Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/31303 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
This commit is contained in:
@ -74,10 +74,8 @@ asmlinkage void console_init(void)
|
||||
if (IS_ENABLED(CONFIG_DEBUG_CONSOLE_INIT))
|
||||
car_set_var(console_inited, 1);
|
||||
|
||||
#if IS_ENABLED(CONFIG_EARLY_PCI_BRIDGE)
|
||||
if (!ENV_SMM && !ENV_RAMSTAGE)
|
||||
if (IS_ENABLED(CONFIG_EARLY_PCI_BRIDGE) && !ENV_SMM && !ENV_RAMSTAGE)
|
||||
pci_early_bridge_init();
|
||||
#endif
|
||||
|
||||
console_hw_init();
|
||||
|
||||
|
Reference in New Issue
Block a user