]> Pileus Git - ~andy/linux/commitdiff
ixgbe: Start temperature sensor attribute index with 1
authorGuenter Roeck <linux@roeck-us.net>
Tue, 26 Nov 2013 07:15:39 +0000 (07:15 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Wed, 18 Dec 2013 06:43:07 +0000 (22:43 -0800)
Per hwmon ABI, temperature sensor attribute index starts with 1, not 0.

Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/ixgbe/ixgbe_sysfs.c

index 3081974030cb4313f7471e3dfdfaa4bad9a2092e..e74ae3682733df328b8b9f85631da133778bc9ee 100644 (file)
@@ -118,22 +118,22 @@ static int ixgbe_add_hwmon_attr(struct ixgbe_adapter *adapter,
        case IXGBE_HWMON_TYPE_LOC:
                ixgbe_attr->dev_attr.show = ixgbe_hwmon_show_location;
                snprintf(ixgbe_attr->name, sizeof(ixgbe_attr->name),
-                        "temp%u_label", offset);
+                        "temp%u_label", offset + 1);
                break;
        case IXGBE_HWMON_TYPE_TEMP:
                ixgbe_attr->dev_attr.show = ixgbe_hwmon_show_temp;
                snprintf(ixgbe_attr->name, sizeof(ixgbe_attr->name),
-                        "temp%u_input", offset);
+                        "temp%u_input", offset + 1);
                break;
        case IXGBE_HWMON_TYPE_CAUTION:
                ixgbe_attr->dev_attr.show = ixgbe_hwmon_show_cautionthresh;
                snprintf(ixgbe_attr->name, sizeof(ixgbe_attr->name),
-                        "temp%u_max", offset);
+                        "temp%u_max", offset + 1);
                break;
        case IXGBE_HWMON_TYPE_MAX:
                ixgbe_attr->dev_attr.show = ixgbe_hwmon_show_maxopthresh;
                snprintf(ixgbe_attr->name, sizeof(ixgbe_attr->name),
-                        "temp%u_crit", offset);
+                        "temp%u_crit", offset + 1);
                break;
        default:
                rc = -EPERM;