summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xf86drm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xf86drm.c b/xf86drm.c
index 88f86ed5..82fb0e22 100644
--- a/xf86drm.c
+++ b/xf86drm.c
@@ -751,8 +751,8 @@ int drmOpen(const char *name, const char *busid)
751 */ 751 */
752int drmOpenWithType(const char *name, const char *busid, int type) 752int drmOpenWithType(const char *name, const char *busid, int type)
753{ 753{
754 if (!drmAvailable() && name != NULL && drm_server_info && 754 if (name != NULL && drm_server_info &&
755 drm_server_info->load_module) { 755 drm_server_info->load_module && !drmAvailable()) {
756 /* try to load the kernel module */ 756 /* try to load the kernel module */
757 if (!drm_server_info->load_module(name)) { 757 if (!drm_server_info->load_module(name)) {
758 drmMsg("[drm] failed to load kernel module \"%s\"\n", name); 758 drmMsg("[drm] failed to load kernel module \"%s\"\n", name);