Commit 365522d9 authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman

staging: unisys: fix CamelCase variables in boottotool functions

Rename the local CamelCase variable

efiSparIndication => efi_spar_indication

Update all references to use the corrected name.
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 01f4d85a
...@@ -377,14 +377,14 @@ static ssize_t boottotool_show(struct device *dev, ...@@ -377,14 +377,14 @@ static ssize_t boottotool_show(struct device *dev,
struct device_attribute *attr, struct device_attribute *attr,
char *buf) char *buf)
{ {
struct efi_spar_indication efiSparIndication; struct efi_spar_indication efi_spar_indication;
visorchannel_read(controlvm_channel, visorchannel_read(controlvm_channel,
offsetof(struct spar_controlvm_channel_protocol, offsetof(struct spar_controlvm_channel_protocol,
efi_spar_ind), &efiSparIndication, efi_spar_ind), &efi_spar_indication,
sizeof(struct efi_spar_indication)); sizeof(struct efi_spar_indication));
return scnprintf(buf, PAGE_SIZE, "%u\n", return scnprintf(buf, PAGE_SIZE, "%u\n",
efiSparIndication.boot_to_tool); efi_spar_indication.boot_to_tool);
} }
static ssize_t boottotool_store(struct device *dev, static ssize_t boottotool_store(struct device *dev,
...@@ -392,16 +392,16 @@ static ssize_t boottotool_store(struct device *dev, ...@@ -392,16 +392,16 @@ static ssize_t boottotool_store(struct device *dev,
const char *buf, size_t count) const char *buf, size_t count)
{ {
int val, ret; int val, ret;
struct efi_spar_indication efiSparIndication; struct efi_spar_indication efi_spar_indication;
if (kstrtoint(buf, 10, &val) != 0) if (kstrtoint(buf, 10, &val) != 0)
return -EINVAL; return -EINVAL;
efiSparIndication.boot_to_tool = val; efi_spar_indication.boot_to_tool = val;
ret = visorchannel_write(controlvm_channel, ret = visorchannel_write(controlvm_channel,
offsetof(struct spar_controlvm_channel_protocol, offsetof(struct spar_controlvm_channel_protocol,
efi_spar_ind), efi_spar_ind),
&(efiSparIndication), &(efi_spar_indication),
sizeof(struct efi_spar_indication)); sizeof(struct efi_spar_indication));
if (ret) if (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