From: Emmanuil Chatzipetru <chatzi.eman...@gmail.com>

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/bootrom.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/staging/greybus/bootrom.c 
b/drivers/staging/greybus/bootrom.c
index 9baf16014d9a..a060bc4c54ad 100644
--- a/drivers/staging/greybus/bootrom.c
+++ b/drivers/staging/greybus/bootrom.c
@@ -220,7 +220,8 @@ static int gb_bootrom_firmware_size_request(struct 
gb_operation *op)
        size_response = op->response->payload;
        size_response->size = cpu_to_le32(bootrom->fw->size);
 
-       dev_dbg(dev, "%s: firmware size %d bytes\n", __func__, 
size_response->size);
+       dev_dbg(dev, "%s: firmware size %d bytes\n",
+               __func__, size_response->size);
 
 unlock:
        mutex_unlock(&bootrom->mutex);
@@ -287,8 +288,8 @@ static int gb_bootrom_get_firmware(struct gb_operation *op)
        firmware_response = op->response->payload;
        memcpy(firmware_response->data, fw->data + offset, size);
 
-       dev_dbg(dev, "responding with firmware (offs = %u, size = %u)\n", 
offset,
-               size);
+       dev_dbg(dev, "responding with firmware (offs = %u, size = %u)\n",
+               offset, size);
 
 unlock:
        mutex_unlock(&bootrom->mutex);
-- 
2.1.4

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

Reply via email to