summaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys/visorbus/visorchipset.c
diff options
context:
space:
mode:
authorDavid Kershner2017-03-28 15:34:31 +0200
committerGreg Kroah-Hartman2017-03-29 09:17:02 +0200
commitb309266ed448a70d229825f7e0bd3a5cf97da6a4 (patch)
tree337349cec8370a9b30e4e2b7b51938e1e0c9ea51 /drivers/staging/unisys/visorbus/visorchipset.c
parentstaging: unisys: visorbus: convert ret to err to be consistent (diff)
downloadkernel-qcow2-linux-b309266ed448a70d229825f7e0bd3a5cf97da6a4.tar.gz
kernel-qcow2-linux-b309266ed448a70d229825f7e0bd3a5cf97da6a4.tar.xz
kernel-qcow2-linux-b309266ed448a70d229825f7e0bd3a5cf97da6a4.zip
staging: unisys: visorbus: boottotool 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: David Kershner <david.kershner@unisys.com> Reviewed-by: Reviewed-by: Tim Sell <timothy.sell@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys/visorbus/visorchipset.c')
-rw-r--r--drivers/staging/unisys/visorbus/visorchipset.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/unisys/visorbus/visorchipset.c b/drivers/staging/unisys/visorbus/visorchipset.c
index 0f30ff966360..00fae144af13 100644
--- a/drivers/staging/unisys/visorbus/visorchipset.c
+++ b/drivers/staging/unisys/visorbus/visorchipset.c
@@ -147,21 +147,21 @@ static ssize_t boottotool_store(struct device *dev,
struct device_attribute *attr,
const char *buf, size_t count)
{
- int val, ret;
+ int val, err;
struct efi_spar_indication efi_spar_indication;
if (kstrtoint(buf, 10, &val))
return -EINVAL;
efi_spar_indication.boot_to_tool = val;
- ret = visorchannel_write
+ err = visorchannel_write
(chipset_dev->controlvm_channel,
offsetof(struct spar_controlvm_channel_protocol,
efi_spar_ind), &(efi_spar_indication),
sizeof(struct efi_spar_indication));
- if (ret)
- return ret;
+ if (err)
+ return err;
return count;
}
static DEVICE_ATTR_RW(boottotool);