mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
drivers:uio:change the goto label to consistent with others
Remove one *goto* label in uio.c. Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com> Signed-off-by: "Hans J. Koch" <hjk@hansjkoch.de> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
4e0b72fd74
commit
d80df1cea0
@ -750,14 +750,13 @@ static int uio_major_init(void)
|
|||||||
|
|
||||||
uio_major = MAJOR(uio_dev);
|
uio_major = MAJOR(uio_dev);
|
||||||
uio_cdev = cdev;
|
uio_cdev = cdev;
|
||||||
result = 0;
|
return 0;
|
||||||
out:
|
|
||||||
return result;
|
|
||||||
out_put:
|
out_put:
|
||||||
kobject_put(&cdev->kobj);
|
kobject_put(&cdev->kobj);
|
||||||
out_unregister:
|
out_unregister:
|
||||||
unregister_chrdev_region(uio_dev, UIO_MAX_DEVICES);
|
unregister_chrdev_region(uio_dev, UIO_MAX_DEVICES);
|
||||||
goto out;
|
out:
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void uio_major_cleanup(void)
|
static void uio_major_cleanup(void)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user