“3821af2fe13700cab6fd67367128fa180e43f8b8”上不存在“arch/m32r/include/asm/bitops.h”
提交 ea295857 编写于 作者: D David Kershner 提交者: Greg Kroah-Hartman

staging: unisys: visorbus: error_store convert ret to err

The ret variable was only returning an error, so changing it to err to
be more consistent across the file.
Signed-off-by: NDavid Kershner <david.kershner@unisys.com>
Reviewed-by: NReviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 b309266e
...@@ -185,18 +185,18 @@ static ssize_t error_store(struct device *dev, struct device_attribute *attr, ...@@ -185,18 +185,18 @@ static ssize_t error_store(struct device *dev, struct device_attribute *attr,
const char *buf, size_t count) const char *buf, size_t count)
{ {
u32 error; u32 error;
int ret; int err;
if (kstrtou32(buf, 10, &error)) if (kstrtou32(buf, 10, &error))
return -EINVAL; return -EINVAL;
ret = visorchannel_write err = visorchannel_write
(chipset_dev->controlvm_channel, (chipset_dev->controlvm_channel,
offsetof(struct spar_controlvm_channel_protocol, offsetof(struct spar_controlvm_channel_protocol,
installation_error), installation_error),
&error, sizeof(u32)); &error, sizeof(u32));
if (ret) if (err)
return ret; return err;
return count; return count;
} }
static DEVICE_ATTR_RW(error); static DEVICE_ATTR_RW(error);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册