diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2007-07-19 04:47:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-19 13:04:43 -0400 |
commit | 68fc4fabca897a09f75f53bac14cdc7a98f52210 (patch) | |
tree | c010fa0d091a543a966aad82926d0fb5c2831f1f /drivers/char/viotape.c | |
parent | cb00ea3528eb3c09eae9871d6e7d038776e952e2 (diff) |
unregister_chrdev(): ignore the return value
unregister_chrdev() always returns 0. There is no need to check the return
value.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>
Cc: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/viotape.c')
-rw-r--r-- | drivers/char/viotape.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/char/viotape.c b/drivers/char/viotape.c index db57277117bb..e12275df6ea2 100644 --- a/drivers/char/viotape.c +++ b/drivers/char/viotape.c | |||
@@ -1098,15 +1098,10 @@ static int chg_state(int index, unsigned char new_state, struct file *file) | |||
1098 | /* Cleanup */ | 1098 | /* Cleanup */ |
1099 | static void __exit viotap_exit(void) | 1099 | static void __exit viotap_exit(void) |
1100 | { | 1100 | { |
1101 | int ret; | ||
1102 | |||
1103 | remove_proc_entry("iSeries/viotape", NULL); | 1101 | remove_proc_entry("iSeries/viotape", NULL); |
1104 | vio_unregister_driver(&viotape_driver); | 1102 | vio_unregister_driver(&viotape_driver); |
1105 | class_destroy(tape_class); | 1103 | class_destroy(tape_class); |
1106 | ret = unregister_chrdev(VIOTAPE_MAJOR, "viotape"); | 1104 | unregister_chrdev(VIOTAPE_MAJOR, "viotape"); |
1107 | if (ret < 0) | ||
1108 | printk(VIOTAPE_KERN_WARN "Error unregistering device: %d\n", | ||
1109 | ret); | ||
1110 | if (viotape_unitinfo) | 1105 | if (viotape_unitinfo) |
1111 | dma_free_coherent(iSeries_vio_dev, | 1106 | dma_free_coherent(iSeries_vio_dev, |
1112 | sizeof(viotape_unitinfo[0]) * VIOTAPE_MAX_TAPE, | 1107 | sizeof(viotape_unitinfo[0]) * VIOTAPE_MAX_TAPE, |