Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit efd44cf4 authored by Shreeya Patel's avatar Shreeya Patel Committed by Greg Kroah-Hartman
Browse files

Staging: greybus: Match alignment with open parenthesis.



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

Signed-off-by: default avatarShreeya Patel <shreeya.patel23498@gmail.com>
Reviewed-by: default avatarBryan O'Donoghue <pure.logic@nexus-software.ie>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f5bee24d
Loading
Loading
Loading
Loading
+16 −19
Original line number Diff line number Diff line
@@ -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);
	}
}