From c3d15a72104b844baab6f99a32c74c09c49335b6 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 16 Mar 2015 16:50:27 -0700 Subject: Intel common SPI: Fix compilation breakage from refactoring When the Intel SPI drivers were refactored, compilation for Chrome OS devices broke, because ELOG uses the SPI driver in SMM. Change-Id: If2b2da5d526196ed742e17409b01a381417d0ce8 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/8701 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin --- src/southbridge/intel/common/spi.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/southbridge/intel/common/spi.c b/src/southbridge/intel/common/spi.c index d6ab01a545..1780fc09ce 100644 --- a/src/southbridge/intel/common/spi.c +++ b/src/southbridge/intel/common/spi.c @@ -360,6 +360,7 @@ void spi_init(void) bios_cntl &= ~(1 << 5); pci_write_config_byte(dev, 0xdc, bios_cntl | 0x1); } +#ifndef __SMM__ static void spi_init_cb(void *unused) { spi_init(); @@ -368,6 +369,7 @@ static void spi_init_cb(void *unused) BOOT_STATE_INIT_ENTRIES(spi_init_bscb) = { BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, spi_init_cb, NULL), }; +#endif int spi_claim_bus(struct spi_slave *slave) { -- cgit v1.2.3