Skip to content

Commit

Permalink
drivers:uio:change the goto label to consistent with others
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Wanlong Gao authored and Greg Kroah-Hartman committed Aug 23, 2011
1 parent 4e0b72f commit d80df1c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/uio/uio.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d80df1c

Please sign in to comment.