diff options
author | Axel Lin <axel.lin@ingics.com> | 2014-07-09 09:18:59 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-28 08:05:57 -0700 |
commit | 2fd37381b1f09aa129c1a67bfe883b8f656c3ef0 (patch) | |
tree | 90371e3dfd7f50f10dea775c6522f4c26f64932b | |
parent | 572ebe4fadcaefa2196c17adc168d8b2e2ce274f (diff) | |
download | lwn-2fd37381b1f09aa129c1a67bfe883b8f656c3ef0.tar.gz lwn-2fd37381b1f09aa129c1a67bfe883b8f656c3ef0.zip |
hwmon: (da9052) Don't use dash in the name attribute
commit ee14b644daaa58afe1e91bb9ebd9cf1b18d1f5fa upstream.
Dashes are not allowed in hwmon name attributes.
Use "da9052" instead of "da9052-hwmon".
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/hwmon/da9052-hwmon.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/da9052-hwmon.c b/drivers/hwmon/da9052-hwmon.c index afd31042b452..d14ab3c45daa 100644 --- a/drivers/hwmon/da9052-hwmon.c +++ b/drivers/hwmon/da9052-hwmon.c @@ -194,7 +194,7 @@ static ssize_t da9052_hwmon_show_name(struct device *dev, struct device_attribute *devattr, char *buf) { - return sprintf(buf, "da9052-hwmon\n"); + return sprintf(buf, "da9052\n"); } static ssize_t show_label(struct device *dev, |