aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/unisys/common-spar/include/vmcallinterface.h
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-10-03 14:09:14 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-10-20 10:29:06 +0800
commit3dbf7b739f781f4195e4ac87c11bb9f250118682 (patch)
tree796e2a8d0b4759edd8329c1aea882cb0c7aae90a /drivers/staging/unisys/common-spar/include/vmcallinterface.h
parentstaging: unisys: Fix VMCALL_IO_CONTROLVM_ADDR_PARAMS structure (diff)
downloadlinux-dev-3dbf7b739f781f4195e4ac87c11bb9f250118682.tar.xz
linux-dev-3dbf7b739f781f4195e4ac87c11bb9f250118682.zip
staging: unisys: Fix VMCALL_IO_DIAG_ADDR_PARAMS
Remove the typedef from VMCALL_IO_DIAG_ADDR_PARAMS and use the name struct vmcall_io_diag_addr_params instead. Fix CamelCase member names: ChannelAddress => address Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys/common-spar/include/vmcallinterface.h')
-rw-r--r--drivers/staging/unisys/common-spar/include/vmcallinterface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/unisys/common-spar/include/vmcallinterface.h b/drivers/staging/unisys/common-spar/include/vmcallinterface.h
index 4eeb40184c84..a7830cac9b8c 100644
--- a/drivers/staging/unisys/common-spar/include/vmcallinterface.h
+++ b/drivers/staging/unisys/common-spar/include/vmcallinterface.h
@@ -130,11 +130,11 @@ struct vmcall_io_controlvm_addr_params {
/* ///////////// ONLY STRUCT TYPE SHOULD BE BELOW */
#pragma pack(push, 1)
/* Parameters to VMCALL_IO_DIAG_ADDR interface */
-typedef struct _VMCALL_IO_DIAG_ADDR_PARAMS {
+struct vmcall_io_diag_addr_params {
/* The Guest-relative physical address of the diagnostic channel.
* This VMCall fills this in with the appropriate address. */
- u64 ChannelAddress; /* contents provided by this VMCALL (OUT) */
-} VMCALL_IO_DIAG_ADDR_PARAMS;
+ u64 address; /* contents provided by this VMCALL (OUT) */
+};
#pragma pack(pop)
/* ///////////// END PRAGMA PACK PUSH 1 /////////////////////////// */