aboutsummaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
Diffstat (limited to 'src/device')
-rw-r--r--src/device/pci_rom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/device/pci_rom.c b/src/device/pci_rom.c
index bb616d91f1..4224c651f3 100644
--- a/src/device/pci_rom.c
+++ b/src/device/pci_rom.c
@@ -264,8 +264,8 @@ void pci_rom_ssdt(const struct device *device)
{
static size_t ngfx;
- /* Only handle VGA devices */
- if ((device->class >> 8) != PCI_CLASS_DISPLAY_VGA)
+ /* Only handle display devices */
+ if ((device->class >> 16) != PCI_BASE_CLASS_DISPLAY)
return;
/* Only handle enabled devices */