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

staging: unisys: refactor CONTROLVM_MESSAGE_DEVICE_CONFIGURE

Remove the typedef from CONTROLVM_MESSAGE_DEVICE_CONFIGURE, replacing it
with struct controlvm_message_device_configure. Fix CamelCase names and
update all references.

Header => header
Packet => packet
Signed-off-by: default avatarBenjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c36acb55
...@@ -240,10 +240,10 @@ struct controlvm_message_device_create { ...@@ -240,10 +240,10 @@ struct controlvm_message_device_create {
struct controlvm_packet_device_create packet; struct controlvm_packet_device_create packet;
}; /* total 128 bytes */ }; /* total 128 bytes */
typedef struct _CONTROLVM_MESSAGE_DEVICE_CONFIGURE { struct controlvm_message_device_configure {
struct controlvm_message_header Header; struct controlvm_message_header header;
struct controlvm_packet_device_configure Packet; struct controlvm_packet_device_configure packet;
} CONTROLVM_MESSAGE_DEVICE_CONFIGURE; /* total 56 bytes */ }; /* total 56 bytes */
/* This is the format for a message in any ControlVm queue. */ /* This is the format for a message in any ControlVm queue. */
struct controlvm_message_packet { struct controlvm_message_packet {
......
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