diff options
author | Vivien Didelot <vivien.didelot@savoirfairelinux.com> | 2015-01-18 18:25:24 -0500 |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2015-01-23 12:10:22 -0500 |
commit | 03070e7c9d2dde754e49b189a195a7f5cc1ac7a1 (patch) | |
tree | 7bde22b78207794c0ef9a09208f83e9e67e46519 /drivers/platform | |
parent | e8549e2cf3dc3ab3222a71eac551eea9769ce86b (diff) |
asus-laptop: Fix is_visible return value
With a Lucid platform, asus_sysfs_is_visible() returned a boolean for
ls_switch and ls_level attributes.
Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/asus-laptop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/platform/x86/asus-laptop.c b/drivers/platform/x86/asus-laptop.c index f71700e0d132..00f5e8217472 100644 --- a/drivers/platform/x86/asus-laptop.c +++ b/drivers/platform/x86/asus-laptop.c | |||
@@ -1616,7 +1616,7 @@ static umode_t asus_sysfs_is_visible(struct kobject *kobj, | |||
1616 | else | 1616 | else |
1617 | goto normal; | 1617 | goto normal; |
1618 | 1618 | ||
1619 | return supported; | 1619 | return supported ? attr->mode : 0; |
1620 | } | 1620 | } |
1621 | 1621 | ||
1622 | normal: | 1622 | normal: |