summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/connection.c
diff options
context:
space:
mode:
authorViresh Kumar2016-06-09 13:04:42 +0200
committerGreg Kroah-Hartman2016-06-10 02:28:02 +0200
commit62e04623530c9a4312817438dea4859c549d01c1 (patch)
tree8f65ab2d195c19e78855bfdd18c3bfb21e3d1214 /drivers/staging/greybus/connection.c
parentgreybus: hd: Export host device tracepoint from hd.c (diff)
downloadkernel-qcow2-linux-62e04623530c9a4312817438dea4859c549d01c1.tar.gz
kernel-qcow2-linux-62e04623530c9a4312817438dea4859c549d01c1.tar.xz
kernel-qcow2-linux-62e04623530c9a4312817438dea4859c549d01c1.zip
greybus: connection: Avoid unnecessary line breaks
Some line breaks weren't required as we never crossed 80 columns, remove them. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/connection.c')
-rw-r--r--drivers/staging/greybus/connection.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/greybus/connection.c b/drivers/staging/greybus/connection.c
index 7def600ddeb5..e0ee82f45de1 100644
--- a/drivers/staging/greybus/connection.c
+++ b/drivers/staging/greybus/connection.c
@@ -288,8 +288,7 @@ static int gb_connection_hd_cport_enable(struct gb_connection *connection)
ret = hd->driver->cport_enable(hd, connection->hd_cport_id);
if (ret) {
- dev_err(&hd->dev,
- "%s: failed to enable host cport: %d\n",
+ dev_err(&hd->dev, "%s: failed to enable host cport: %d\n",
connection->name, ret);
return ret;
}
@@ -307,8 +306,7 @@ static void gb_connection_hd_cport_disable(struct gb_connection *connection)
ret = hd->driver->cport_disable(hd, connection->hd_cport_id);
if (ret) {
- dev_err(&hd->dev,
- "%s: failed to disable host cport: %d\n",
+ dev_err(&hd->dev, "%s: failed to disable host cport: %d\n",
connection->name, ret);
}
}