Kernel: Fix condition on whether to initialize a display adapter or not

This commit is contained in:
Liav A 2021-07-09 08:56:46 +03:00 committed by Andreas Kling
commit a8c35b6a93
Notes: sideshowbarker 2024-07-18 09:18:30 +09:00

View file

@ -187,7 +187,7 @@ UNMAP_AFTER_INIT bool GraphicsManagement::initialize()
// Note: Each graphics controller will try to set its native screen resolution
// upon creation. Later on, if we don't want to have framebuffer devices, a
// framebuffer console will take the control instead.
if (!is_vga_compatible_pci_device(address) || !is_display_controller_pci_device(address))
if (!is_vga_compatible_pci_device(address) && !is_display_controller_pci_device(address))
return;
determine_and_initialize_graphics_device(address, id);
});