diff --git a/hw/xfree86/common/xf86platformBus.c b/hw/xfree86/common/xf86platformBus.c index abd09054d..b7fdb4dd6 100644 --- a/hw/xfree86/common/xf86platformBus.c +++ b/hw/xfree86/common/xf86platformBus.c @@ -579,6 +579,9 @@ xf86platformProbeDev(DriverPtr drvp) /* Accept the device if the driver is hyperv_drm */ if (strcmp(xf86_platform_devices[j].attribs->driver, "hyperv_drm") == 0) break; + /* Accept the device if the driver is ofdrm */ + if (strcmp(xf86_platform_devices[j].attribs->driver, "ofdrm") == 0) + break; /* Accept the device if the driver is simpledrm */ if (strcmp(xf86_platform_devices[j].attribs->driver, "simpledrm") == 0) break;