Staging: greybus: Match alignment with open parenthesis.

Alignment should match with open parenthesis.
This fixes the coding style issue.

Signed-off-by: Shreeya Patel <shreeya.patel23498@gmail.com>
Reviewed-by: Bryan O'Donoghue <pure.logic@nexus-software.ie>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Shreeya Patel 2017-07-29 01:20:42 +05:30 committed by Greg Kroah-Hartman
parent f5bee24d86
commit efd44cf468
1 changed files with 16 additions and 19 deletions

View File

@ -629,8 +629,7 @@ int find_loopback_devices(struct loopback_test *t)
t->debugfs_prefix, d->name);
if (t->debug)
printf("add %s %s\n", d->sysfs_entry,
d->debugfs_entry);
printf("add %s %s\n", d->sysfs_entry, d->debugfs_entry);
}
ret = 0;
@ -803,16 +802,14 @@ static void prepare_devices(struct loopback_test *t)
t->iteration_max);
if (t->use_async) {
write_sysfs_val(t->devices[i].sysfs_entry,
"async", 1);
write_sysfs_val(t->devices[i].sysfs_entry, "async", 1);
write_sysfs_val(t->devices[i].sysfs_entry,
"timeout", t->async_timeout);
write_sysfs_val(t->devices[i].sysfs_entry,
"outstanding_operations_max",
t->async_outstanding_operations);
} else
write_sysfs_val(t->devices[i].sysfs_entry,
"async", 0);
write_sysfs_val(t->devices[i].sysfs_entry, "async", 0);
}
}