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

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
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment