]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm: Remove 80-column line in drm_mode_object.c
authorShayenne da Luz Moura <shayenneluzmoura@gmail.com>
Wed, 31 Oct 2018 17:44:24 +0000 (14:44 -0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Thu, 1 Nov 2018 17:54:05 +0000 (18:54 +0100)
Break line after NULL to decrease the line size.

Signed-off-by: Shayenne da Luz Moura <shayenneluzmoura@gmail.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20181031174424.odljb6obj25wm47d@smtp.gmail.com
drivers/gpu/drm/drm_mode_object.c

index be8b754eaf60c93b3a1d86cc2efc0929b9fef16e..cd9bc0ce9be07bfc3169ddf5596184f3991e5bc6 100644 (file)
@@ -38,7 +38,8 @@ int __drm_mode_object_add(struct drm_device *dev, struct drm_mode_object *obj,
        int ret;
 
        mutex_lock(&dev->mode_config.idr_mutex);
-       ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL, 1, 0, GFP_KERNEL);
+       ret = idr_alloc(&dev->mode_config.crtc_idr, register_obj ? obj : NULL,
+                       1, 0, GFP_KERNEL);
        if (ret >= 0) {
                /*
                 * Set up the object linking under the protection of the idr