diff --git a/hw/xfree86/common/xf86platformBus.c b/hw/xfree86/common/xf86platformBus.c index c4657589e..51e56270e 100644 --- a/hw/xfree86/common/xf86platformBus.c +++ b/hw/xfree86/common/xf86platformBus.c @@ -577,6 +577,9 @@ xf86platformProbeDev(DriverPtr drvp) if (ServerIsNotSeat0()) { break; } else { + /* Accept the device if the driver is corebootdrm */ + if (strcmp(xf86_platform_devices[j].attribs->driver, "corebootdrm") == 0) + break; /* Accept the device if the driver is efidrm */ if (strcmp(xf86_platform_devices[j].attribs->driver, "efidrm") == 0) break;