From: Jean Delvare Date: Sun, 17 Jul 2011 16:39:19 +0000 (+0200) Subject: hwmon: (it87) Fix label group removal X-Git-Tag: v2.6.39.4~27 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e715786e4900af13f80c73d2af461a0ad57d3330;p=thirdparty%2Fkernel%2Fstable.git hwmon: (it87) Fix label group removal commit fa8b69758e65b406c8010936b541cd00deef804d upstream. A copy-and-paste error caused it87_attributes_vid to be referenced where it87_attributes_label should be. Thankfully the group is only used for attribute removal, not attribute creation, so the effects of this bug are limited, but let's fix it still. Signed-off-by: Jean Delvare Acked-by: Guenter Roeck Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c index 316b64823f7b3..a8d23591a2c66 100644 --- a/drivers/hwmon/it87.c +++ b/drivers/hwmon/it87.c @@ -1535,7 +1535,7 @@ static struct attribute *it87_attributes_label[] = { }; static const struct attribute_group it87_group_label = { - .attrs = it87_attributes_vid, + .attrs = it87_attributes_label, }; /* SuperIO detection - will change isa_address if a chip is found */