loop: remove (now) unused 'out' label
authorJens Axboe <axboe@fb.com>
Wed, 20 May 2015 15:54:35 +0000 (09:54 -0600)
committerJens Axboe <axboe@fb.com>
Wed, 20 May 2015 15:54:35 +0000 (09:54 -0600)
gcc, righfully, complains:

drivers/block/loop.c:1369:1: warning: label 'out' defined but not used [-Wunused-label]

Kill it.

Signed-off-by: Jens Axboe <axboe@fb.com>
drivers/block/loop.c

index 2b99e34f4253a85029fac87dcdef71d77b69df09..1797185a56af298c527a708df2cff14244558318 100644 (file)
@@ -1388,7 +1388,6 @@ static void lo_release(struct gendisk *disk, fmode_t mode)
                loop_flush(lo);
        }
 
-out:
        mutex_unlock(&lo->lo_ctl_mutex);
 }