[PATCH 2/2] staging: greybus: log: Fix line over 80 characters.

Emmanuil Chatzipetru chatzi.emanuel at gmail.com
Wed Jan 4 14:07:32 UTC 2017


Fix coding style issue caught by checkpatch.pl related to the following
warning:
	- CHECK: WARNING: line over 80 characters

Signed-off-by: Emmanuil Chatzipetru <chatzi.emanuel at gmail.com>
---
 drivers/staging/greybus/log.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/greybus/log.c b/drivers/staging/greybus/log.c
index 1a18ab1ff8aa..87910fd4a332 100644
--- a/drivers/staging/greybus/log.c
+++ b/drivers/staging/greybus/log.c
@@ -39,7 +39,7 @@ static int gb_log_request_handler(struct gb_operation *op)
 	len = le16_to_cpu(receive->len);
 	if (len != (int)(op->request->payload_size - sizeof(*receive))) {
 		dev_err(dev, "log request wrong size %d vs %d\n", len,
-				(int)(op->request->payload_size - sizeof(*receive)));
+			(int)(op->request->payload_size - sizeof(*receive)));
 		return -EINVAL;
 	}
 	if (len == 0) {
-- 
2.1.4



More information about the devel mailing list