staging: unisys: refactor CONTROLVM_MESSAGE_DEVICE_CONFIGURE
authorBenjamin Romer <benjamin.romer@unisys.com>
Thu, 23 Oct 2014 18:30:30 +0000 (14:30 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 27 Oct 2014 02:33:11 +0000 (10:33 +0800)
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: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/unisys/common-spar/include/channels/controlvmchannel.h

index 120fa58fc0c91d5cf1f25291fe72972956339b8d..6dc79d8fd795c2ec6d9e4580e709a59c18e35d63 100644 (file)
@@ -240,10 +240,10 @@ struct controlvm_message_device_create {
        struct controlvm_packet_device_create packet;
 };     /* total 128 bytes */
 
-typedef struct _CONTROLVM_MESSAGE_DEVICE_CONFIGURE  {
-       struct controlvm_message_header Header;
-       struct controlvm_packet_device_configure Packet;
-} CONTROLVM_MESSAGE_DEVICE_CONFIGURE;  /* total 56 bytes */
+struct controlvm_message_device_configure  {
+       struct controlvm_message_header header;
+       struct controlvm_packet_device_configure packet;
+};     /* total 56 bytes */
 
 /* This is the format for a message in any ControlVm queue. */
 struct controlvm_message_packet  {
This page took 0.027166 seconds and 5 git commands to generate.