diff options
author | Ville Syrjälä <ville.syrjala@linux.intel.com> | 2015-03-27 09:51:59 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2015-03-27 11:08:46 -0400 |
commit | 53615af7a27400d252307093ce49768ccf6442a9 (patch) | |
tree | 122fb87b30091a79ec3d6fed6b7cea97a335344f | |
parent | 83be003807415a07465fc5d748803b702409f3da (diff) |
drm: Use max() to make the ioctl alloc size code cleaner
Use max() to make the code to determine the allocation size for
the ioctl data easier to read.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-rw-r--r-- | drivers/gpu/drm/drm_ioctl.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/gpu/drm/drm_ioctl.c b/drivers/gpu/drm/drm_ioctl.c index 68ba014886c2..4a2bf2b857ec 100644 --- a/drivers/gpu/drm/drm_ioctl.c +++ b/drivers/gpu/drm/drm_ioctl.c | |||
@@ -683,9 +683,8 @@ long drm_ioctl(struct file *filp, | |||
683 | } | 683 | } |
684 | 684 | ||
685 | drv_size = _IOC_SIZE(ioctl->cmd); | 685 | drv_size = _IOC_SIZE(ioctl->cmd); |
686 | usize = asize = _IOC_SIZE(cmd); | 686 | usize = _IOC_SIZE(cmd); |
687 | if (drv_size > asize) | 687 | asize = max(usize, drv_size); |
688 | asize = drv_size; | ||
689 | cmd = ioctl->cmd; | 688 | cmd = ioctl->cmd; |
690 | 689 | ||
691 | DRM_DEBUG("pid=%d, dev=0x%lx, auth=%d, %s\n", | 690 | DRM_DEBUG("pid=%d, dev=0x%lx, auth=%d, %s\n", |