Displaying 2 results from an estimated 2 matches for "906e".
Did you mean:
906
2015 Dec 18
2
[mesa v3 8/9] nvc0: remove use of deprecated sw class identifier
The commit summary "remove use of deprecated..." is no longer
applicable. Feel free to tweak (use nvif provided class name/define ?)
before pushing.
-Emil
2012 Jul 27
0
[PATCH 3/3] nouveau: add vblank methods on newer cards
...3,15 +173,8 @@ nouveau_abi16_ioctl_grobj_alloc(ABI16_IOCTL_ARGS)
return -EINVAL;
/* compatibility with userspace that assumes 506e for all chipsets */
- if (init->class == 0x506e) {
+ if (init->class == 0x506e)
init->class = nouveau_software_class(dev);
- if (init->class == 0x906e)
- return 0;
- } else
- if (init->class == 0x906e) {
- NV_ERROR(dev, "906e not supported yet\n");
- return -EINVAL;
- }
chan = nouveau_channel_get(file_priv, init->channel);
if (IS_ERR(chan))
diff --git a/drivers/gpu/drm/nouveau/nouveau_display.c b/drivers/gpu/drm/nouveau/...