aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/x86
diff options
context:
space:
mode:
authorAzael Avalos <coproscefalo@gmail.com>2015-02-10 23:09:16 -0500
committerDarren Hart <dvhart@linux.intel.com>2015-02-11 23:40:48 -0500
commitc6c68ff812ca730a3d6bac95a49d731b832a1460 (patch)
treeedf51c66675eead173c54b5220a19299911f06b8 /drivers/platform/x86
parent1b0eb5bc241354aa854671fdf02132d2d1452bdf (diff)
toshiba_acpi: Add version entry to sysfs
This patch adds a new entry to the sysfs, showing the version of the driver. Signed-off-by: Azael Avalos <coproscefalo@gmail.com> Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'drivers/platform/x86')
-rw-r--r--drivers/platform/x86/toshiba_acpi.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index a480fd089f81..fe5987e80e66 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -1531,6 +1531,8 @@ static const struct backlight_ops toshiba_backlight_data = {
1531/* 1531/*
1532 * Sysfs files 1532 * Sysfs files
1533 */ 1533 */
1534static ssize_t toshiba_version_show(struct device *dev,
1535 struct device_attribute *attr, char *buf);
1534static ssize_t toshiba_kbd_bl_mode_store(struct device *dev, 1536static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
1535 struct device_attribute *attr, 1537 struct device_attribute *attr,
1536 const char *buf, size_t count); 1538 const char *buf, size_t count);
@@ -1583,6 +1585,7 @@ static ssize_t toshiba_usb_sleep_music_store(struct device *dev,
1583 struct device_attribute *attr, 1585 struct device_attribute *attr,
1584 const char *buf, size_t count); 1586 const char *buf, size_t count);
1585 1587
1588static DEVICE_ATTR(version, S_IRUGO, toshiba_version_show, NULL);
1586static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR, 1589static DEVICE_ATTR(kbd_backlight_mode, S_IRUGO | S_IWUSR,
1587 toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store); 1590 toshiba_kbd_bl_mode_show, toshiba_kbd_bl_mode_store);
1588static DEVICE_ATTR(kbd_type, S_IRUGO, toshiba_kbd_type_show, NULL); 1591static DEVICE_ATTR(kbd_type, S_IRUGO, toshiba_kbd_type_show, NULL);
@@ -1607,6 +1610,7 @@ static DEVICE_ATTR(usb_sleep_music, S_IRUGO | S_IWUSR,
1607 toshiba_usb_sleep_music_store); 1610 toshiba_usb_sleep_music_store);
1608 1611
1609static struct attribute *toshiba_attributes[] = { 1612static struct attribute *toshiba_attributes[] = {
1613 &dev_attr_version.attr,
1610 &dev_attr_kbd_backlight_mode.attr, 1614 &dev_attr_kbd_backlight_mode.attr,
1611 &dev_attr_kbd_type.attr, 1615 &dev_attr_kbd_type.attr,
1612 &dev_attr_available_kbd_modes.attr, 1616 &dev_attr_available_kbd_modes.attr,
@@ -1628,6 +1632,12 @@ static struct attribute_group toshiba_attr_group = {
1628 .attrs = toshiba_attributes, 1632 .attrs = toshiba_attributes,
1629}; 1633};
1630 1634
1635static ssize_t toshiba_version_show(struct device *dev,
1636 struct device_attribute *attr, char *buf)
1637{
1638 return sprintf(buf, "%s\n", TOSHIBA_ACPI_VERSION);
1639}
1640
1631static ssize_t toshiba_kbd_bl_mode_store(struct device *dev, 1641static ssize_t toshiba_kbd_bl_mode_store(struct device *dev,
1632 struct device_attribute *attr, 1642 struct device_attribute *attr,
1633 const char *buf, size_t count) 1643 const char *buf, size_t count)