Commit f49c5f16 authored by Simran Singhal's avatar Simran Singhal Committed by Greg Kroah-Hartman

staging: greybus: tools: Fix braces {} style

This patch fixes the check reported by checkpatch.pl
for braces {} should be used on all arms of this statement.
Signed-off-by: default avatarSimran Singhal <singhalsimran0@gmail.com>
Reviewed-by: default avatarAlex Elder <elder@linaro.org>
Link: https://lore.kernel.org/r/20200322173045.GA24700@simran-Inspiron-5558Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4bc0659d
...@@ -802,8 +802,9 @@ static void prepare_devices(struct loopback_test *t) ...@@ -802,8 +802,9 @@ static void prepare_devices(struct loopback_test *t)
write_sysfs_val(t->devices[i].sysfs_entry, write_sysfs_val(t->devices[i].sysfs_entry,
"outstanding_operations_max", "outstanding_operations_max",
t->async_outstanding_operations); t->async_outstanding_operations);
} else } else {
write_sysfs_val(t->devices[i].sysfs_entry, "async", 0); write_sysfs_val(t->devices[i].sysfs_entry, "async", 0);
}
} }
} }
......
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