From: Viresh Kumar Date: Thu, 9 Jun 2016 11:04:42 +0000 (+0530) Subject: greybus: connection: Avoid unnecessary line breaks X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=62e04623530c9a4312817438dea4859c549d01c1;p=linux-beck.git 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 Signed-off-by: Greg Kroah-Hartman --- 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); } }