intel/broadwell: bootstate mechanism only exists in ramstage

So don't try to use it elsewhere.

Change-Id: Ia600ba654bde36d3ea8a0f3185afae00fe50bfe9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/10030
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Patrick Georgi 2015-04-29 19:11:30 +02:00 committed by Patrick Georgi
parent c41fd4b75c
commit 40e2004abf
1 changed files with 2 additions and 0 deletions

View File

@ -312,12 +312,14 @@ void spi_init(void)
pci_write_config_byte(dev, 0xdc, bios_cntl | 0x1); pci_write_config_byte(dev, 0xdc, bios_cntl | 0x1);
} }
#if ENV_RAMSTAGE
static void spi_init_cb(void *unused) static void spi_init_cb(void *unused)
{ {
spi_init(); spi_init();
} }
BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, spi_init_cb, NULL); BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_ENTRY, spi_init_cb, NULL);
#endif
int spi_claim_bus(struct spi_slave *slave) int spi_claim_bus(struct spi_slave *slave)
{ {