]> Git Repo - linux.git/commitdiff
hwmon: (it87) Fix label group removal
authorJean Delvare <[email protected]>
Sun, 17 Jul 2011 16:39:19 +0000 (18:39 +0200)
committerJean Delvare <[email protected]>
Sun, 17 Jul 2011 16:39:19 +0000 (18:39 +0200)
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 <[email protected]>
Cc: [email protected]
Acked-by: Guenter Roeck <[email protected]>
drivers/hwmon/it87.c

index bb6405b92007b7b9a9ba2c95038e49f01211c7a0..5f52477504305e9f679e8d74e6cd4a402808c821 100644 (file)
@@ -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 */
This page took 0.054787 seconds and 4 git commands to generate.