The initialization line fits into the one line nicely no need to break it to the next line. No functional change in this patch. Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@xxxxxxx> --- drivers/block/loop.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/block/loop.c b/drivers/block/loop.c index ef70795e36ab..e691a8c6b04a 100644 --- a/drivers/block/loop.c +++ b/drivers/block/loop.c @@ -2033,8 +2033,7 @@ static void loop_handle_cmd(struct loop_cmd *cmd) static void loop_queue_work(struct kthread_work *work) { - struct loop_cmd *cmd = - container_of(work, struct loop_cmd, work); + struct loop_cmd *cmd = container_of(work, struct loop_cmd, work); loop_handle_cmd(cmd); } -- 2.22.1