Skip to content

Commit

Permalink
applesmc - sensors patch missing from 2.6.22-rc2
Browse files Browse the repository at this point in the history
Add name file needed by lm_sensors user-space applications in applesmc
sysfs tree.

Cc: Soeren Sonnenburg <kernel@nn7.de>
Cc: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Nicolas Boichat authored and Linus Torvalds committed May 24, 2007
1 parent ae2d990 commit fa74419
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions drivers/hwmon/applesmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -491,6 +491,12 @@ static void applesmc_idev_poll(unsigned long unused)

/* Sysfs Files */

static ssize_t applesmc_name_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
return snprintf(buf, PAGE_SIZE, "applesmc\n");
}

static ssize_t applesmc_position_show(struct device *dev,
struct device_attribute *attr, char *buf)
{
Expand Down Expand Up @@ -913,6 +919,8 @@ static struct led_classdev applesmc_backlight = {
.brightness_set = applesmc_brightness_set,
};

static DEVICE_ATTR(name, 0444, applesmc_name_show, NULL);

static DEVICE_ATTR(position, 0444, applesmc_position_show, NULL);
static DEVICE_ATTR(calibrate, 0644,
applesmc_calibrate_show, applesmc_calibrate_store);
Expand Down Expand Up @@ -1197,6 +1205,8 @@ static int __init applesmc_init(void)
goto out_driver;
}

ret = sysfs_create_file(&pdev->dev.kobj, &dev_attr_name.attr);

/* Create key enumeration sysfs files */
ret = sysfs_create_group(&pdev->dev.kobj, &key_enumeration_group);
if (ret)
Expand Down

0 comments on commit fa74419

Please sign in to comment.