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

staging: unisys: visorbus: fix alignment of paranethesis

Correct indenting of parameters when calling the functions in the file
visorchipset.c.
Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarTim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 040b78f7
...@@ -691,9 +691,8 @@ static int visorbus_configure(struct controlvm_message *inmsg, ...@@ -691,9 +691,8 @@ static int visorbus_configure(struct controlvm_message *inmsg,
goto err_respond; goto err_respond;
} }
err = visorchannel_set_clientpartition err = visorchannel_set_clientpartition(bus_info->visorchannel,
(bus_info->visorchannel, cmd->configure_bus.guest_handle);
cmd->configure_bus.guest_handle);
if (err) if (err)
goto err_respond; goto err_respond;
...@@ -1252,7 +1251,7 @@ static int chipset_selftest_uevent(struct controlvm_message_header *msg_hdr) ...@@ -1252,7 +1251,7 @@ static int chipset_selftest_uevent(struct controlvm_message_header *msg_hdr)
static int chipset_notready_uevent(struct controlvm_message_header *msg_hdr) static int chipset_notready_uevent(struct controlvm_message_header *msg_hdr)
{ {
int res = kobject_uevent(&chipset_dev->acpi_device->dev.kobj, int res = kobject_uevent(&chipset_dev->acpi_device->dev.kobj,
KOBJ_OFFLINE); KOBJ_OFFLINE);
if (msg_hdr->flags.response_expected) if (msg_hdr->flags.response_expected)
controlvm_respond(msg_hdr, res, NULL); controlvm_respond(msg_hdr, res, NULL);
...@@ -1275,7 +1274,7 @@ static int unisys_vmcall(unsigned long tuple, unsigned long param) ...@@ -1275,7 +1274,7 @@ static int unisys_vmcall(unsigned long tuple, unsigned long param)
return -EPERM; return -EPERM;
__asm__ __volatile__(".byte 0x00f, 0x001, 0x0c1" : "=a"(result) : __asm__ __volatile__(".byte 0x00f, 0x001, 0x0c1" : "=a"(result) :
"a"(tuple), "b"(reg_ebx), "c"(reg_ecx)); "a"(tuple), "b"(reg_ebx), "c"(reg_ecx));
if (result) if (result)
goto error; goto error;
......
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