diff options
Diffstat (limited to 'drivers/misc/enclosure.c')
| -rw-r--r-- | drivers/misc/enclosure.c | 12 | 
1 files changed, 3 insertions, 9 deletions
diff --git a/drivers/misc/enclosure.c b/drivers/misc/enclosure.c index eb29113e0bac..5a17bfeb80d3 100644 --- a/drivers/misc/enclosure.c +++ b/drivers/misc/enclosure.c @@ -468,7 +468,7 @@ static struct class enclosure_class = {  	.dev_groups		= enclosure_class_groups,  }; -static const char *const enclosure_status [] = { +static const char *const enclosure_status[] = {  	[ENCLOSURE_STATUS_UNSUPPORTED] = "unsupported",  	[ENCLOSURE_STATUS_OK] = "OK",  	[ENCLOSURE_STATUS_CRITICAL] = "critical", @@ -480,7 +480,7 @@ static const char *const enclosure_status [] = {  	[ENCLOSURE_STATUS_MAX] = NULL,  }; -static const char *const enclosure_type [] = { +static const char *const enclosure_type[] = {  	[ENCLOSURE_COMPONENT_DEVICE] = "device",  	[ENCLOSURE_COMPONENT_ARRAY_DEVICE] = "array device",  }; @@ -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)  |