提交 d80df1ce 编写于 作者: W Wanlong Gao 提交者: Greg Kroah-Hartman

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

Remove one *goto* label in uio.c.
Signed-off-by: NWanlong Gao <gaowanlong@cn.fujitsu.com>
Signed-off-by: N"Hans J. Koch" <hjk@hansjkoch.de>
Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册