]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - drivers/uio/uio.c
drivers:uio:change the goto label to consistent with others
[karo-tx-linux.git] / drivers / uio / uio.c
index d2efe823c20dd7fc317a1ffc0e12c283138e531d..c89f12a8b1166b576a5fecb8c823894a1942cd47 100644 (file)
@@ -750,14 +750,13 @@ static int uio_major_init(void)
 
        uio_major = MAJOR(uio_dev);
        uio_cdev = cdev;
-       result = 0;
-out:
-       return result;
+       return 0;
 out_put:
        kobject_put(&cdev->kobj);
 out_unregister:
        unregister_chrdev_region(uio_dev, UIO_MAX_DEVICES);
-       goto out;
+out:
+       return result;
 }
 
 static void uio_major_cleanup(void)