summaryrefslogtreecommitdiff
path: root/drivers/misc/enclosure.c
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-11-29 18:38:32 +0530
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-12-07 18:45:31 +0100
commit750b54deb569369f8cd808c9f7afd1348bde96ed (patch)
treef67eb8206914496035cab07ad67e450e8053fd11 /drivers/misc/enclosure.c
parent367ef846bbcaafb9aa4ae95552942134064e99f5 (diff)
misc: enclosure: Remove unnecessary error check
It is not necessary to check return value of class_register. enclosure_init returns both successful and error value. Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/enclosure.c')
-rw-r--r--drivers/misc/enclosure.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/misc/enclosure.c b/drivers/misc/enclosure.c
index c4c5552abf14..5a17bfeb80d3 100644
--- a/drivers/misc/enclosure.c
+++ b/drivers/misc/enclosure.c
@@ -680,13 +680,7 @@ ATTRIBUTE_GROUPS(enclosure_component);
static int __init enclosure_init(void)
{
- int err;
-
- err = class_register(&enclosure_class);
- if (err)
- return err;
-
- return 0;
+ return class_register(&enclosure_class);
}
static void __exit enclosure_exit(void)