Commit c5e0a62a authored by Todd Poynor's avatar Todd Poynor Committed by Greg Kroah-Hartman

staging: gasket: core: fix line continuation indent in gasket_alloc_dev

Previous cleanups missed a case of multi-line function call with line
continuation parameters not aligned per kernel style.
Signed-off-by: default avatarTodd Poynor <toddpoynor@google.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4cfc2bff
...@@ -231,8 +231,9 @@ static int gasket_alloc_dev(struct gasket_internal_desc *internal_desc, ...@@ -231,8 +231,9 @@ static int gasket_alloc_dev(struct gasket_internal_desc *internal_desc,
dev_info->devt = dev_info->devt =
MKDEV(driver_desc->major, driver_desc->minor + MKDEV(driver_desc->major, driver_desc->minor +
gasket_dev->dev_idx); gasket_dev->dev_idx);
dev_info->device = device_create(internal_desc->class, parent, dev_info->device =
dev_info->devt, gasket_dev, dev_info->name); device_create(internal_desc->class, parent, dev_info->devt,
gasket_dev, dev_info->name);
/* cdev has not yet been added; cdev_added is 0 */ /* cdev has not yet been added; cdev_added is 0 */
dev_info->gasket_dev_ptr = gasket_dev; dev_info->gasket_dev_ptr = gasket_dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment