diff options
Diffstat (limited to 'src/include/device/pci.h')
-rw-r--r-- | src/include/device/pci.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/device/pci.h b/src/include/device/pci.h index 13d63d4f6c..e18a09afe0 100644 --- a/src/include/device/pci.h +++ b/src/include/device/pci.h @@ -103,9 +103,8 @@ static inline const struct pci_operations *ops_pci(device_t dev) { const struct pci_operations *pops; pops = 0; - if (dev && dev->ops) { + if (dev && dev->ops) pops = dev->ops->ops_pci; - } return pops; } |