Commit 85b5fbf7 authored by Randy Dunlap's avatar Randy Dunlap Committed by Anton Vorontsov

power_supply: Fix sysfs format warning

Fix format warning:

drivers/power/power_supply_sysfs.c:82: warning: format '%d' expects type 'int', but argument 4 has type 'ssize_t'
Signed-off-by: default avatarRandy Dunlap <rdunlap@xenotime.net>
Signed-off-by: default avatarAnton Vorontsov <cbouatmailru@gmail.com>
parent 1c74529d
...@@ -77,7 +77,7 @@ static ssize_t power_supply_show_property(struct device *dev, ...@@ -77,7 +77,7 @@ static ssize_t power_supply_show_property(struct device *dev,
dev_dbg(dev, "driver has no data for `%s' property\n", dev_dbg(dev, "driver has no data for `%s' property\n",
attr->attr.name); attr->attr.name);
else if (ret != -ENODEV) else if (ret != -ENODEV)
dev_err(dev, "driver failed to report `%s' property: %d\n", dev_err(dev, "driver failed to report `%s' property: %zd\n",
attr->attr.name, ret); attr->attr.name, ret);
return ret; return ret;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment