diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2013-03-08 19:33:39 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2013-03-08 19:55:26 -0500 |
commit | cdbac7f7f105a30d548dba4af41f7d29e2beaa69 (patch) | |
tree | 91e564ec1e5a6372f771adf0ae7d85803efb610c /src/util.h | |
parent | 96d4c438656b01927a2cb97d395f5e286d6195cf (diff) | |
download | seabios-cdbac7f7f105a30d548dba4af41f7d29e2beaa69.tar.gz |
smm: Don't use PCIDevices list in smm_setup().
The smm_setup() call is invoked from resume. The PCIDevices list is
only valid during POST. Cache the necessary PCI BDF ids so that
PCIDevices isn't needed.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -314,6 +314,7 @@ extern const u8 pci_irqs[4]; void pci_setup(void); // smm.c +void smm_device_setup(void); void smm_setup(void); // smp.c |