diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2017-05-25 01:10:32 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2017-05-27 21:39:33 +0200 |
commit | 9e92662d01d87a54ee076cd1fcab8b199f6456eb (patch) | |
tree | a4c4c97f11e115a3a2b3970591a41c2dd9b61910 /drivers/gpu/drm/drm_ioctl.c | |
parent | switch compat_drm_infobufs() to drm_ioctl_kernel() (diff) | |
download | linux-9e92662d01d87a54ee076cd1fcab8b199f6456eb.tar.xz linux-9e92662d01d87a54ee076cd1fcab8b199f6456eb.zip |
switch compat_drm_getclient() to drm_ioctl_kernel()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'drivers/gpu/drm/drm_ioctl.c')
-rw-r--r-- | drivers/gpu/drm/drm_ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c index a7d4d6253096..8a8b3075b8b2 100644 --- a/drivers/gpu/drm/drm_ioctl.c +++ b/drivers/gpu/drm/drm_ioctl.c @@ -172,7 +172,7 @@ static int drm_set_busid(struct drm_device *dev, struct drm_file *file_priv) * Searches for the client with the specified index and copies its information * into userspace */ -static int drm_getclient(struct drm_device *dev, void *data, +int drm_getclient(struct drm_device *dev, void *data, struct drm_file *file_priv) { struct drm_client *client = data; |