Commit 2450301a authored by Benjamin Romer's avatar Benjamin Romer Committed by Greg Kroah-Hartman
Browse files

staging: unisys: fix CamelCase names in struct efi_spar_indication



Fix CamelCase names and update all references to them:

BootToFirmwareUI => boot_to_fw_ui
ClearNvram => clear_nvram
ClearCmos => clear_cmos
BootToTool => boot_to_tool

Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 755e2ecc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -151,10 +151,10 @@ struct pci_id {
};

struct efi_spar_indication  {
	u64 BootToFirmwareUI:1;	/* Bit 0: Stop in uefi ui */
	u64 ClearNvram:1;	/* Bit 1: Clear NVRAM */
	u64 ClearCmos:1;	/* Bit 2: Clear CMOS */
	u64 BootToTool:1;	/* Bit 3: Run install tool */
	u64 boot_to_fw_ui:1;	/* Bit 0: Stop in uefi ui */
	u64 clear_nvram:1;	/* Bit 1: Clear NVRAM */
	u64 clear_cmos:1;	/* Bit 2: Clear CMOS */
	u64 boot_to_tool:1;	/* Bit 3: Run install tool */
	/* remaining bits are available */
};

+2 −2
Original line number Diff line number Diff line
@@ -393,7 +393,7 @@ static ssize_t boottotool_show(struct device *dev,
			EfiSparIndication), &efiSparIndication,
		sizeof(struct efi_spar_indication));
	return scnprintf(buf, PAGE_SIZE, "%u\n",
			efiSparIndication.BootToTool);
			efiSparIndication.boot_to_tool);
}

static ssize_t boottotool_store(struct device *dev,
@@ -406,7 +406,7 @@ static ssize_t boottotool_store(struct device *dev,
	if (kstrtoint(buf, 10, &val) != 0)
		return -EINVAL;

	efiSparIndication.BootToTool = val;
	efiSparIndication.boot_to_tool = val;
	ret = visorchannel_write(ControlVm_channel,
			offsetof(ULTRA_CONTROLVM_CHANNEL_PROTOCOL,
				EfiSparIndication),