intel/spi: Fix use of __SIMPLE_DEVICE__

Fix cases of using ENV_SMM where __SIMPLE_DEVICE__
should be used instead.

Change-Id: I385c82767a87ff7a47466a200488fae9fc8b863d
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31629
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
This commit is contained in:
Kyösti Mälkki
2019-02-07 12:44:00 +02:00
committed by Nico Huber
parent db9e9ac30d
commit 17387f67ad
4 changed files with 4 additions and 4 deletions

View File

@ -344,7 +344,7 @@ void spi_init(void)
uint32_t ids;
uint16_t vendor_id, device_id;
#ifdef __SMM__
#ifdef __SIMPLE_DEVICE__
pci_devfn_t dev = PCI_DEV(0, 31, 0);
#else
struct device *dev = pcidev_on_root(31, 0);