OSDN Git Service

staging: gasket: core: fix line continuation indent in gasket_alloc_dev
authorTodd Poynor <toddpoynor@google.com>
Fri, 10 Aug 2018 03:20:58 +0000 (20:20 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Aug 2018 17:43:42 +0000 (19:43 +0200)
Previous cleanups missed a case of multi-line function call with line
continuation parameters not aligned per kernel style.

Signed-off-by: Todd Poynor <toddpoynor@google.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/gasket/gasket_core.c

index 37d14e3..3fb8052 100644 (file)
@@ -231,8 +231,9 @@ static int gasket_alloc_dev(struct gasket_internal_desc *internal_desc,
        dev_info->devt =
                MKDEV(driver_desc->major, driver_desc->minor +
                      gasket_dev->dev_idx);
-       dev_info->device = device_create(internal_desc->class, parent,
-               dev_info->devt, gasket_dev, dev_info->name);
+       dev_info->device =
+               device_create(internal_desc->class, parent, dev_info->devt,
+                             gasket_dev, dev_info->name);
 
        /* cdev has not yet been added; cdev_added is 0 */
        dev_info->gasket_dev_ptr = gasket_dev;