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/stallion.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/stallion.c')
-rw-r--r-- | drivers/char/stallion.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/char/stallion.c b/drivers/char/stallion.c index 93d0bb8b4c0f..4a80b2f864e0 100644 --- a/drivers/char/stallion.c +++ b/drivers/char/stallion.c | |||
@@ -4795,7 +4795,6 @@ static void __exit stallion_module_exit(void) | |||
4795 | { | 4795 | { |
4796 | struct stlbrd *brdp; | 4796 | struct stlbrd *brdp; |
4797 | unsigned int i, j; | 4797 | unsigned int i, j; |
4798 | int retval; | ||
4799 | 4798 | ||
4800 | pr_debug("cleanup_module()\n"); | 4799 | pr_debug("cleanup_module()\n"); |
4801 | 4800 | ||
@@ -4818,9 +4817,7 @@ static void __exit stallion_module_exit(void) | |||
4818 | 4817 | ||
4819 | for (i = 0; i < 4; i++) | 4818 | for (i = 0; i < 4; i++) |
4820 | class_device_destroy(stallion_class, MKDEV(STL_SIOMEMMAJOR, i)); | 4819 | class_device_destroy(stallion_class, MKDEV(STL_SIOMEMMAJOR, i)); |
4821 | if ((retval = unregister_chrdev(STL_SIOMEMMAJOR, "staliomem"))) | 4820 | unregister_chrdev(STL_SIOMEMMAJOR, "staliomem"); |
4822 | printk("STALLION: failed to un-register serial memory device, " | ||
4823 | "errno=%d\n", -retval); | ||
4824 | class_destroy(stallion_class); | 4821 | class_destroy(stallion_class); |
4825 | 4822 | ||
4826 | pci_unregister_driver(&stl_pcidriver); | 4823 | pci_unregister_driver(&stl_pcidriver); |