Commit 9c319739 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: greybus: loopback: Fix up some alignment checkpatch issues

Some function prototypes do not match the expected alignment formatting
so fix that up so that checkpatch is happy.

Cc: "Bryan O'Donoghue" <pure.logic@nexus-software.ie>
Cc: Johan Hovold <johan@kernel.org>
Cc: greybus-dev@lists.linaro.org
Cc: devel@driverdev.osuosl.org
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Acked-by: default avatarAlex Elder <elder@kernel.org>
Link: https://lore.kernel.org/r/20190825055429.18547-7-gregkh@linuxfoundation.orgSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 92382385
...@@ -882,7 +882,7 @@ static int gb_loopback_fn(void *data) ...@@ -882,7 +882,7 @@ static int gb_loopback_fn(void *data)
gb->type = 0; gb->type = 0;
gb->send_count = 0; gb->send_count = 0;
sysfs_notify(&gb->dev->kobj, NULL, sysfs_notify(&gb->dev->kobj, NULL,
"iteration_count"); "iteration_count");
dev_dbg(&bundle->dev, "load test complete\n"); dev_dbg(&bundle->dev, "load test complete\n");
} else { } else {
dev_dbg(&bundle->dev, dev_dbg(&bundle->dev,
...@@ -1054,7 +1054,7 @@ static int gb_loopback_probe(struct gb_bundle *bundle, ...@@ -1054,7 +1054,7 @@ static int gb_loopback_probe(struct gb_bundle *bundle,
/* Allocate kfifo */ /* Allocate kfifo */
if (kfifo_alloc(&gb->kfifo_lat, kfifo_depth * sizeof(u32), if (kfifo_alloc(&gb->kfifo_lat, kfifo_depth * sizeof(u32),
GFP_KERNEL)) { GFP_KERNEL)) {
retval = -ENOMEM; retval = -ENOMEM;
goto out_conn; goto out_conn;
} }
......
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