Commit 195b5787 authored by Erik Arfvidson's avatar Erik Arfvidson Committed by Greg Kroah-Hartman

staging: unisys: Fix vmcallerinterface.h block comments

This patch fixes all the checkpatch Block comments use a trailing
*/ while keeping comments clean.
Signed-off-by: default avatarErik Arfvidson <erik.arfvidson@unisys.com>
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6504e649
...@@ -43,20 +43,15 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */ ...@@ -43,20 +43,15 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */
* - the 0x01 identifies it as the 1st instance of a VMCALL_VIRTPART * - the 0x01 identifies it as the 1st instance of a VMCALL_VIRTPART
* type of VMCALL * type of VMCALL
*/ */
/* used by all Guests, not just IO */
VMCALL_IO_CONTROLVM_ADDR = 0x0501, /* used by all Guests, not just VMCALL_IO_CONTROLVM_ADDR = 0x0501,
* IO */ /* Allow caller to query virtual time offset */
VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET = 0x0708, /* Allow caller to VMCALL_QUERY_GUEST_VIRTUAL_TIME_OFFSET = 0x0708,
* query virtual time /* LOGEVENT Post Code (RDX) with specified subsystem mask */
* offset */ /* (RCX - monitor_subsystems.h) and severity (RDX) */
VMCALL_POST_CODE_LOGEVENT = 0x070B, /* LOGEVENT Post Code (RDX) with VMCALL_POST_CODE_LOGEVENT = 0x070B,
* specified subsystem mask (RCX /* Allow ULTRA_SERVICE_CAPABILITY_TIME capable guest to make VMCALL */
* - monitor_subsystems.h) and VMCALL_UPDATE_PHYSICAL_TIME = 0x0a02
* severity (RDX) */
VMCALL_UPDATE_PHYSICAL_TIME = 0x0a02 /* Allow
* ULTRA_SERVICE_CAPABILITY_TIME
* capable guest to make
* VMCALL */
}; };
#define VMCALL_SUCCESS 0 #define VMCALL_SUCCESS 0
...@@ -74,7 +69,8 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */ ...@@ -74,7 +69,8 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */
unisys_extended_vmcall(method, param1, param2, param3) unisys_extended_vmcall(method, param1, param2, param3)
/* The following uses VMCALL_POST_CODE_LOGEVENT interface but is currently /* The following uses VMCALL_POST_CODE_LOGEVENT interface but is currently
* not used much */ * not used much
*/
#define ISSUE_IO_VMCALL_POSTCODE_SEVERITY(postcode, severity) \ #define ISSUE_IO_VMCALL_POSTCODE_SEVERITY(postcode, severity) \
ISSUE_IO_EXTENDED_VMCALL(VMCALL_POST_CODE_LOGEVENT, severity, \ ISSUE_IO_EXTENDED_VMCALL(VMCALL_POST_CODE_LOGEVENT, severity, \
MDS_APPOS, postcode) MDS_APPOS, postcode)
...@@ -84,11 +80,11 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */ ...@@ -84,11 +80,11 @@ enum vmcall_monitor_interface_method_tuple { /* VMCALL identification tuples */
/* Parameters to VMCALL_IO_CONTROLVM_ADDR interface */ /* Parameters to VMCALL_IO_CONTROLVM_ADDR interface */
struct vmcall_io_controlvm_addr_params { struct vmcall_io_controlvm_addr_params {
/* The Guest-relative physical address of the ControlVm channel. /* The Guest-relative physical address of the ControlVm channel. */
* This VMCall fills this in with the appropriate address. */ /* This VMCall fills this in with the appropriate address. */
u64 address; /* contents provided by this VMCALL (OUT) */ u64 address; /* contents provided by this VMCALL (OUT) */
/* the size of the ControlVm channel in bytes This VMCall fills this /* the size of the ControlVm channel in bytes This VMCall fills this */
* in with the appropriate address. */ /* in with the appropriate address. */
u32 channel_bytes; /* contents provided by this VMCALL (OUT) */ u32 channel_bytes; /* contents provided by this VMCALL (OUT) */
u8 unused[4]; /* Unused Bytes in the 64-Bit Aligned Struct */ u8 unused[4]; /* Unused Bytes in the 64-Bit Aligned Struct */
} __packed; } __packed;
......
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