The patch titled applesmc: Use standard sysfs names for labels has been added to the -mm tree. Its filename is applesmc-use-standard-sysfs-names-for-labels.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: applesmc: Use standard sysfs names for labels From: Jean Delvare <khali@xxxxxxxxxxxx> We have a standard suffix to associate a designation string to a sensor: _label. Use it instead of _position so that libsensors will catch it. (This isn't implemented yet, but should be soon.) Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx> Cc: Nicolas Boichat <nicolas@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/hwmon/applesmc.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff -puN drivers/hwmon/applesmc.c~applesmc-use-standard-sysfs-names-for-labels drivers/hwmon/applesmc.c --- a/drivers/hwmon/applesmc.c~applesmc-use-standard-sysfs-names-for-labels +++ a/drivers/hwmon/applesmc.c @@ -981,7 +981,7 @@ static SENSOR_DEVICE_ATTR_2(fan##offset# static SENSOR_DEVICE_ATTR(fan##offset##_manual, S_IRUGO | S_IWUSR, \ applesmc_show_fan_manual, applesmc_store_fan_manual, offset-1); \ \ -static SENSOR_DEVICE_ATTR(fan##offset##_position, S_IRUGO, \ +static SENSOR_DEVICE_ATTR(fan##offset##_label, S_IRUGO, \ applesmc_show_fan_position, NULL, offset-1); \ \ static struct attribute *fan##offset##_attributes[] = { \ @@ -991,7 +991,7 @@ static struct attribute *fan##offset##_a &sensor_dev_attr_fan##offset##_safe.dev_attr.attr, \ &sensor_dev_attr_fan##offset##_output.dev_attr.attr, \ &sensor_dev_attr_fan##offset##_manual.dev_attr.attr, \ - &sensor_dev_attr_fan##offset##_position.dev_attr.attr, \ + &sensor_dev_attr_fan##offset##_label.dev_attr.attr, \ NULL \ }; _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are origin.patch apple-smc-driver-hardware-monitoring-and-control.patch oss-strlcpy-is-smart-enough.patch rtc-add-rtc-class-driver-for-the-maxim-max6900.patch legacy-pc-parports-support-parport-dev.patch layered-parport-code-uses-parport-dev.patch clean-up-mutex_trylock-noise.patch fbdev-dont-show-logo-if-driver-or-fbcon-are-modular.patch rivafb-handle-i2c-bus-creation-failure.patch rivafb-nvidiafb-various-cleanups.patch rivafb-fixed-reversed-ddc-ports.patch applesmc-use-the-address-as-platform-device-id.patch applesmc-use-standard-sysfs-names-for-labels.patch git-alsa.patch scx200-use-mutex-instead-of-semaphore.patch x86-msr-add-support-for-safe-variants.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html