* [PATCH] drivers:uid:change the goto lebel to consistent with others
@ 2011-08-20 3:44 Wanlong Gao
0 siblings, 0 replies; only message in thread
From: Wanlong Gao @ 2011-08-20 3:44 UTC (permalink / raw)
To: linux-kernel; +Cc: hjk, gregkh, Wanlong Gao
From: Wanlong Gao <gaowanlong@cn.fujitsu.com>
Remove one *goto* label in uio.c.
Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
---
drivers/uio/uio.c | 7 +++----
1 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/drivers/uio/uio.c b/drivers/uio/uio.c
index d2efe82..c89f12a 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)
--
1.7.4.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-08-20 3:46 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-20 3:44 [PATCH] drivers:uid:change the goto lebel to consistent with others Wanlong Gao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome