Commit e030d39d authored by David Kershner's avatar David Kershner Committed by Greg Kroah-Hartman

staging: unisys: visorbus: remaining_steps 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: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarReviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 08a55d2d
...@@ -259,18 +259,18 @@ static ssize_t remaining_steps_store(struct device *dev, ...@@ -259,18 +259,18 @@ static ssize_t remaining_steps_store(struct device *dev,
const char *buf, size_t count) const char *buf, size_t count)
{ {
u16 remaining_steps; u16 remaining_steps;
int ret; int err;
if (kstrtou16(buf, 10, &remaining_steps)) if (kstrtou16(buf, 10, &remaining_steps))
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_remaining_steps), installation_remaining_steps),
&remaining_steps, sizeof(u16)); &remaining_steps, sizeof(u16));
if (ret) if (err)
return ret; return err;
return count; return count;
} }
static DEVICE_ATTR_RW(remaining_steps); static DEVICE_ATTR_RW(remaining_steps);
......
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