From 81fa7a9f56b1efb04658db921e5228c102548921 Mon Sep 17 00:00:00 2001 From: Ben Skeggs Date: Tue, 21 Sep 2010 13:02:07 +1000 Subject: nouveau: fix drm version check some more ... and make a mental note to not push commits before having coffee Signed-off-by: Ben Skeggs --- nouveau/nouveau_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nouveau') diff --git a/nouveau/nouveau_device.c b/nouveau/nouveau_device.c index 91f9a27e..9a091fba 100644 --- a/nouveau/nouveau_device.c +++ b/nouveau/nouveau_device.c @@ -49,7 +49,7 @@ nouveau_device_open_existing(struct nouveau_device **dev, int close, if (!ver) return -EINVAL; - if ((ver->version_major == 0 && ver->version_patchlevel != 16) && + if ((ver->version_major == 0 && ver->version_patchlevel != 16) || ver->version_major > 1) { nouveau_device_close((void *)&nvdev); return -EINVAL; -- cgit v1.2.3