diff options
author | Roel Kluin <roel.kluin@gmail.com> | 2009-09-11 08:28:55 (GMT) |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-09-11 08:29:52 (GMT) |
commit | 68d36bdbf6377d36129b2c6bcbe9d24c5fb1739a (patch) | |
tree | 6337a0eea07f6b0e777baec57adcb8e6dc76d107 | |
parent | ad2a5d8e0b518f997af126dd737127bdada90a6f (diff) | |
download | linux-fsl-qoriq-68d36bdbf6377d36129b2c6bcbe9d24c5fb1739a.tar.xz |
[S390] tape: reversed order of labels
Fix the order of goto labels in tape_generic_online.
Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
-rw-r--r-- | drivers/s390/char/tape_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/s390/char/tape_core.c b/drivers/s390/char/tape_core.c index 1d420d9..7424d64 100644 --- a/drivers/s390/char/tape_core.c +++ b/drivers/s390/char/tape_core.c @@ -358,11 +358,11 @@ tape_generic_online(struct tape_device *device, out_char: tapechar_cleanup_device(device); +out_minor: + tape_remove_minor(device); out_discipline: device->discipline->cleanup_device(device); device->discipline = NULL; -out_minor: - tape_remove_minor(device); out: module_put(discipline->owner); return rc; |