mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
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: Todd Poynor <toddpoynor@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4cfc2bff29
commit
c5e0a62ad8
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user