hwmon: Constify str parameter of hwmon_ops->read_string

The read_string callback is supposed to retrieve a pointer to a
constant string.

Signed-off-by: Jean Delvare <jdelvare@suse.de>
Reviewed-by: Peter Huewe <peterhuewe@gmx.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Jean Delvare
2017-03-07 06:15:15 -08:00
committed by Guenter Roeck
parent b3ee2785ee
commit 5ba6bcbc33
2 changed files with 2 additions and 2 deletions

View File

@@ -186,7 +186,7 @@ static ssize_t hwmon_attr_show_string(struct device *dev,
char *buf)
{
struct hwmon_device_attribute *hattr = to_hwmon_attr(devattr);
char *s;
const char *s;
int ret;
ret = hattr->ops->read_string(dev, hattr->type, hattr->attr,