aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2015-03-30 17:10:36 +0000
committerDaniel Vetter <daniel.vetter@ffwll.ch>2015-03-31 09:18:40 +0200
commit066626d5d5548d7ff63772a840b8d40a0d278825 (patch)
treec5c3299c4d7bb16081f8c8bccc1b3c6f90d55f21 /include/drm
parentdrm/atomic: Don't try to free a NULL state (diff)
downloadlinux-dev-066626d5d5548d7ff63772a840b8d40a0d278825.tar.xz
linux-dev-066626d5d5548d7ff63772a840b8d40a0d278825.zip
drm: line wrap DRM_IOCTL_DEF* macros
Improve the readability and keeps the lines shorter than 80 columns. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/drmP.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 0d501ed20775..62c40777c009 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -261,8 +261,13 @@ struct drm_ioctl_desc {
* ioctl, for use by drm_ioctl().
*/
-#define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \
- [DRM_IOCTL_NR(DRM_IOCTL_##ioctl) - DRM_COMMAND_BASE] = {.cmd = DRM_IOCTL_##ioctl, .func = _func, .flags = _flags, .name = #ioctl}
+#define DRM_IOCTL_DEF_DRV(ioctl, _func, _flags) \
+ [DRM_IOCTL_NR(DRM_IOCTL_##ioctl) - DRM_COMMAND_BASE] = { \
+ .cmd = DRM_IOCTL_##ioctl, \
+ .func = _func, \
+ .flags = _flags, \
+ .name = #ioctl \
+ }
/* Event queued up for userspace to read */
struct drm_pending_event {