Skip to content

Commit

Permalink
drm/nouveau: fix up 32-bit ioctls and device wake up.
Browse files Browse the repository at this point in the history
Noticed by kbuild test robot.

Signed-off-by: Dave Airlie <airlied@redhat.com>
  • Loading branch information
Dave Airlie committed Sep 1, 2013
1 parent a5b6f74 commit 2254f63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nouveau_ioc32.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ long nouveau_compat_ioctl(struct file *filp, unsigned int cmd,
if (fn != NULL)
ret = (*fn)(filp, cmd, arg);
else
ret = drm_ioctl(filp, cmd, arg);
ret = nouveau_drm_ioctl(filp, cmd, arg);

return ret;
}
1 change: 1 addition & 0 deletions drivers/gpu/drm/nouveau/nouveau_ioctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
#define __NOUVEAU_IOCTL_H__

long nouveau_compat_ioctl(struct file *, unsigned int cmd, unsigned long arg);
long nouveau_drm_ioctl(struct file *, unsigned int cmd, unsigned long arg);

#endif

0 comments on commit 2254f63

Please sign in to comment.