]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
hwmon: (core) Clarify use of chip attributes
authorGuenter Roeck <linux@roeck-us.net>
Sun, 16 Oct 2016 17:38:52 +0000 (10:38 -0700)
committerGuenter Roeck <linux@roeck-us.net>
Sat, 10 Dec 2016 05:54:18 +0000 (21:54 -0800)
Describing chip attributes as "attributes which apply to the entire chip"
is confusing. Rephrase to "attributes which are not bound to a specific
input or output".

Also rename hwmon_chip_attr_templates[] to hwmon_chip_attrs[] to indicate
that the respective strings strings are not templates but actual attribute
names.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Documentation/hwmon/hwmon-kernel-api.txt
drivers/hwmon/hwmon.c

index ef9d74947f5c2e46c2498165301b558be5da3135..562ef44adb5e4a1896e12606c5846a89429f944f 100644 (file)
@@ -160,7 +160,7 @@ It contains following fields:
 * type: The hardware monitoring sensor type.
   Supported sensor types are
   * hwmon_chip         A virtual sensor type, used to describe attributes
-                       which apply to the entire chip.
+  *                    which are not bound to a specific input or output
   * hwmon_temp         Temperature sensor
   * hwmon_in           Voltage sensor
   * hwmon_curr         Current sensor
index 491231fa0580d248ebe234b3ff8b0df2fde3c09b..112aae60f51f5f460275c3f0e0a46c9c2c54433c 100644 (file)
@@ -292,7 +292,11 @@ static struct attribute *hwmon_genattr(struct device *dev,
        return a;
 }
 
-static const char * const hwmon_chip_attr_templates[] = {
+/*
+ * Chip attributes are not attribute templates but actual sysfs attributes.
+ * See hwmon_genattr() for special handling.
+ */
+static const char * const hwmon_chip_attrs[] = {
        [hwmon_chip_temp_reset_history] = "temp_reset_history",
        [hwmon_chip_in_reset_history] = "in_reset_history",
        [hwmon_chip_curr_reset_history] = "curr_reset_history",
@@ -429,7 +433,7 @@ static const char * const hwmon_pwm_attr_templates[] = {
 };
 
 static const char * const *__templates[] = {
-       [hwmon_chip] = hwmon_chip_attr_templates,
+       [hwmon_chip] = hwmon_chip_attrs,
        [hwmon_temp] = hwmon_temp_attr_templates,
        [hwmon_in] = hwmon_in_attr_templates,
        [hwmon_curr] = hwmon_curr_attr_templates,
@@ -441,7 +445,7 @@ static const char * const *__templates[] = {
 };
 
 static const int __templates_size[] = {
-       [hwmon_chip] = ARRAY_SIZE(hwmon_chip_attr_templates),
+       [hwmon_chip] = ARRAY_SIZE(hwmon_chip_attrs),
        [hwmon_temp] = ARRAY_SIZE(hwmon_temp_attr_templates),
        [hwmon_in] = ARRAY_SIZE(hwmon_in_attr_templates),
        [hwmon_curr] = ARRAY_SIZE(hwmon_curr_attr_templates),