]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
io_uring: add new line after variable declaration
authorAnuj Gupta <anuj20.g@samsung.com>
Mon, 2 Sep 2024 06:21:33 +0000 (11:51 +0530)
committerJens Axboe <axboe@kernel.dk>
Mon, 2 Sep 2024 15:39:57 +0000 (09:39 -0600)
Fixes checkpatch warning

Signed-off-by: Anuj Gupta <anuj20.g@samsung.com>
Link: https://lore.kernel.org/r/20240902062134.136387-2-anuj20.g@samsung.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/eventfd.c

index b9384503a2b752ec132347d594c060a41877875f..d9836d43725fdd1a70a2f74dd0205cec0ab5f753 100644 (file)
@@ -126,6 +126,7 @@ int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
        ev_fd->cq_ev_fd = eventfd_ctx_fdget(fd);
        if (IS_ERR(ev_fd->cq_ev_fd)) {
                int ret = PTR_ERR(ev_fd->cq_ev_fd);
+
                kfree(ev_fd);
                return ret;
        }