aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/it87.c
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2011-07-17 18:39:19 +0200
committerJean Delvare <khali@endymion.delvare>2011-07-17 18:39:19 +0200
commitfa8b69758e65b406c8010936b541cd00deef804d (patch)
tree62fa03b23e50c4f808494c9073c4085917ba3160 /drivers/hwmon/it87.c
parenthwmon: (asus_atk0110) Fix memory leak (diff)
downloadlinux-dev-fa8b69758e65b406c8010936b541cd00deef804d.tar.xz
linux-dev-fa8b69758e65b406c8010936b541cd00deef804d.zip
hwmon: (it87) Fix label group removal
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 <khali@linux-fr.org> Cc: stable@kernel.org Acked-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers/hwmon/it87.c')
-rw-r--r--drivers/hwmon/it87.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/it87.c b/drivers/hwmon/it87.c
index bb6405b92007..5f5247750430 100644
--- a/drivers/hwmon/it87.c
+++ b/drivers/hwmon/it87.c
@@ -1538,7 +1538,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 */