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:
parent
f5bee24d86
commit
efd44cf468
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue