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

staging: unisys: fix CamelCase global Visorchipset_platform_device

Rename the CamelCase variable:

Visorchipset_platform_device => visorchipset_platform_device

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 5aa8ae57
...@@ -326,7 +326,7 @@ static const struct attribute_group *visorchipset_dev_groups[] = { ...@@ -326,7 +326,7 @@ static const struct attribute_group *visorchipset_dev_groups[] = {
}; };
/* /sys/devices/platform/visorchipset */ /* /sys/devices/platform/visorchipset */
static struct platform_device Visorchipset_platform_device = { static struct platform_device visorchipset_platform_device = {
.name = "visorchipset", .name = "visorchipset",
.id = -1, .id = -1,
.dev.groups = visorchipset_dev_groups, .dev.groups = visorchipset_dev_groups,
...@@ -1000,7 +1000,7 @@ device_epilog(u32 bus_no, u32 dev_no, struct spar_segment_state state, u32 cmd, ...@@ -1000,7 +1000,7 @@ device_epilog(u32 bus_no, u32 dev_no, struct spar_segment_state state, u32 cmd,
* diag_shutdown.sh script in * diag_shutdown.sh script in
* the visorchipset hotplug */ * the visorchipset hotplug */
kobject_uevent_env kobject_uevent_env
(&Visorchipset_platform_device.dev. (&visorchipset_platform_device.dev.
kobj, KOBJ_ONLINE, envp); kobj, KOBJ_ONLINE, envp);
} }
} }
...@@ -1340,7 +1340,7 @@ initialize_controlvm_payload(void) ...@@ -1340,7 +1340,7 @@ initialize_controlvm_payload(void)
int int
visorchipset_chipset_ready(void) visorchipset_chipset_ready(void)
{ {
kobject_uevent(&Visorchipset_platform_device.dev.kobj, KOBJ_ONLINE); kobject_uevent(&visorchipset_platform_device.dev.kobj, KOBJ_ONLINE);
return CONTROLVM_RESP_SUCCESS; return CONTROLVM_RESP_SUCCESS;
} }
EXPORT_SYMBOL_GPL(visorchipset_chipset_ready); EXPORT_SYMBOL_GPL(visorchipset_chipset_ready);
...@@ -1352,7 +1352,7 @@ visorchipset_chipset_selftest(void) ...@@ -1352,7 +1352,7 @@ visorchipset_chipset_selftest(void)
char *envp[] = { env_selftest, NULL }; char *envp[] = { env_selftest, NULL };
sprintf(env_selftest, "SPARSP_SELFTEST=%d", 1); sprintf(env_selftest, "SPARSP_SELFTEST=%d", 1);
kobject_uevent_env(&Visorchipset_platform_device.dev.kobj, KOBJ_CHANGE, kobject_uevent_env(&visorchipset_platform_device.dev.kobj, KOBJ_CHANGE,
envp); envp);
return CONTROLVM_RESP_SUCCESS; return CONTROLVM_RESP_SUCCESS;
} }
...@@ -1364,7 +1364,7 @@ EXPORT_SYMBOL_GPL(visorchipset_chipset_selftest); ...@@ -1364,7 +1364,7 @@ EXPORT_SYMBOL_GPL(visorchipset_chipset_selftest);
int int
visorchipset_chipset_notready(void) visorchipset_chipset_notready(void)
{ {
kobject_uevent(&Visorchipset_platform_device.dev.kobj, KOBJ_OFFLINE); kobject_uevent(&visorchipset_platform_device.dev.kobj, KOBJ_OFFLINE);
return CONTROLVM_RESP_SUCCESS; return CONTROLVM_RESP_SUCCESS;
} }
EXPORT_SYMBOL_GPL(visorchipset_chipset_notready); EXPORT_SYMBOL_GPL(visorchipset_chipset_notready);
...@@ -1516,7 +1516,7 @@ parahotplug_request_kickoff(struct parahotplug_request *req) ...@@ -1516,7 +1516,7 @@ parahotplug_request_kickoff(struct parahotplug_request *req)
sprintf(env_func, "SPAR_PARAHOTPLUG_FUNCTION=%d", sprintf(env_func, "SPAR_PARAHOTPLUG_FUNCTION=%d",
cmd->device_change_state.dev_no & 0x7); cmd->device_change_state.dev_no & 0x7);
kobject_uevent_env(&Visorchipset_platform_device.dev.kobj, KOBJ_CHANGE, kobject_uevent_env(&visorchipset_platform_device.dev.kobj, KOBJ_CHANGE,
envp); envp);
} }
...@@ -2222,8 +2222,8 @@ visorchipset_init(void) ...@@ -2222,8 +2222,8 @@ visorchipset_init(void)
} }
} }
Visorchipset_platform_device.dev.devt = major_dev; visorchipset_platform_device.dev.devt = major_dev;
if (platform_device_register(&Visorchipset_platform_device) < 0) { if (platform_device_register(&visorchipset_platform_device) < 0) {
POSTCODE_LINUX_2(DEVICE_REGISTER_FAILURE_PC, DIAG_SEVERITY_ERR); POSTCODE_LINUX_2(DEVICE_REGISTER_FAILURE_PC, DIAG_SEVERITY_ERR);
rc = -1; rc = -1;
goto cleanup; goto cleanup;
......
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