From: Wanlong Gao Date: Sat, 20 Aug 2011 04:12:08 +0000 (+0800) Subject: drivers:uio:change the goto label to consistent with others X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d80df1cea036ce8b6064b3b08dd58ad3eb55a6e9;p=mv-sheeva.git drivers:uio:change the goto label to consistent with others Remove one *goto* label in uio.c. Signed-off-by: Wanlong Gao Signed-off-by: "Hans J. Koch" Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c index d2efe823c20..c89f12a8b11 100644 --- a/drivers/uio/uio.c +++ b/drivers/uio/uio.c @@ -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)