Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d80df1ce authored by Wanlong Gao's avatar Wanlong Gao Committed by Greg Kroah-Hartman
Browse files

drivers:uio:change the goto label to consistent with others



Remove one *goto* label in uio.c.

Signed-off-by: default avatarWanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: default avatar"Hans J. Koch" <hjk@hansjkoch.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4e0b72fd
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -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)