diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2010-09-21 13:02:07 +1000 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-09-21 13:02:07 +1000 |
commit | 81fa7a9f56b1efb04658db921e5228c102548921 (patch) | |
tree | ee4383521a0b758df15185c67089c12a2b5114bc /nouveau | |
parent | d1cec6d2a9d63411c70c6c37509129ea4afe07d8 (diff) |
nouveau: fix drm version check some more
... and make a mental note to not push commits before having coffee
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'nouveau')
-rw-r--r-- | nouveau/nouveau_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |