Displaying 2 results from an estimated 2 matches for "drm_array_size".
2013 Sep 20
0
[PATCH] drm/nouveau: remove dead/ums code from nouveau_ioc32.c
...0,9 @@ long nouveau_compat_ioctl(struct file *filp, unsigned int cmd,
unsigned long arg)
{
unsigned int nr = DRM_IOCTL_NR(cmd);
- drm_ioctl_compat_t *fn = NULL;
- int ret;
if (nr < DRM_COMMAND_BASE)
return drm_compat_ioctl(filp, cmd, arg);
-#if 0
- if (nr < DRM_COMMAND_BASE + DRM_ARRAY_SIZE(mga_compat_ioctls))
- fn = nouveau_compat_ioctls[nr - DRM_COMMAND_BASE];
-#endif
- if (fn != NULL)
- ret = (*fn)(filp, cmd, arg);
- else
- ret = nouveau_drm_ioctl(filp, cmd, arg);
-
- return ret;
+ return nouveau_drm_ioctl(filp, cmd, arg);
}
--
1.8.4
2010 Aug 06
4
nv vpe video decoder
Hello,
I have my work on the nv vpe video decoder in a functional
state. In case you didn't know this decoder accelerates mpeg2
video at the idct/mc level. I have verified that it works on
nv40 hardware. I believe it works on nv30 hardware (and
maybe some earlier hardware), but I cannot verify since I have
none.
I will reply with patches against the kernel, drm, ddx
and mesa for