diff --git a/hw/xfree86/common/xf86platformBus.c b/hw/xfree86/common/xf86platformBus.c index 5994d06ca..ba1cb74a2 100644 --- a/hw/xfree86/common/xf86platformBus.c +++ b/hw/xfree86/common/xf86platformBus.c @@ -592,6 +592,9 @@ xf86platformProbeDev(DriverPtr drvp) /* Accept the device if the driver is simpledrm */ if (strcmp(xf86_platform_devices[j].attribs->driver, "simpledrm") == 0) break; + /* Accept the device if the driver is vesadrm */ + if (strcmp(xf86_platform_devices[j].attribs->driver, "vesadrm") == 0) + break; } if (xf86IsPrimaryPlatform(&xf86_platform_devices[j]))