aboutsummaryrefslogtreecommitdiff
path: root/src/device/pci_ops.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/device/pci_ops.c')
-rw-r--r--src/device/pci_ops.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/device/pci_ops.c b/src/device/pci_ops.c
index 2f896d2bcc..b6fc32d6cf 100644
--- a/src/device/pci_ops.c
+++ b/src/device/pci_ops.c
@@ -22,11 +22,10 @@
const struct pci_bus_operations *pci_bus_default_ops(device_t dev)
{
-#if CONFIG_MMCONF_SUPPORT_DEFAULT
+ if (IS_ENABLED(CONFIG_NO_MMCONF_SUPPORT))
+ return &pci_cf8_conf1;
+
return &pci_ops_mmconf;
-#else
- return &pci_cf8_conf1;
-#endif
}
static const struct pci_bus_operations *pci_bus_ops(struct bus *bus, struct device *dev)