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.eman...@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

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to