summaryrefslogtreecommitdiff
path: root/drivers/staging/unisys/visorchipset/visorchipset.h
diff options
context:
space:
mode:
authorBenjamin Romer <benjamin.romer@unisys.com>2014-10-31 09:57:23 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-03 15:59:01 -0800
commit9b1caee7170b9078f39c2f4c7a33334ad40cd47b (patch)
treef0122bafd56ef6c097a10be6c9ecd77e64ec717f /drivers/staging/unisys/visorchipset/visorchipset.h
parent2c683cde06c1d57a9ecbacc484540e259e7255fa (diff)
staging: unisys: refactor VISORCHIPSET_CHANNEL_INFO
Remove the typedef from this type and use struct visorchipset_channel_info instead. Fix CamelCase member names: addrType => addr_type channelAddr => channel_addr nChannelBytes => n_channel_bytes channelTypeGuid => channel_type_uuid channelInstGuid => channel_inst_uuid Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/unisys/visorchipset/visorchipset.h')
-rw-r--r--drivers/staging/unisys/visorchipset/visorchipset.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/staging/unisys/visorchipset/visorchipset.h b/drivers/staging/unisys/visorchipset/visorchipset.h
index 75f20f068225..c8a936684cfb 100644
--- a/drivers/staging/unisys/visorchipset/visorchipset.h
+++ b/drivers/staging/unisys/visorchipset/visorchipset.h
@@ -60,15 +60,15 @@ enum crash_obj_type {
/** Attributes for a particular Supervisor channel.
*/
-typedef struct {
- enum visorchipset_addresstype addrType;
- HOSTADDRESS channelAddr;
+struct visorchipset_channel_info {
+ enum visorchipset_addresstype addr_type;
+ HOSTADDRESS channel_addr;
struct irq_info intr;
- u64 nChannelBytes;
- uuid_le channelTypeGuid;
- uuid_le channelInstGuid;
+ u64 n_channel_bytes;
+ uuid_le channel_type_uuid;
+ uuid_le channel_inst_uuid;
-} VISORCHIPSET_CHANNEL_INFO;
+};
/** Attributes for a particular Supervisor device.
* Any visorchipset client can query these attributes using
@@ -81,7 +81,7 @@ typedef struct {
u32 devNo;
uuid_le devInstGuid;
struct visorchipset_state state;
- VISORCHIPSET_CHANNEL_INFO chanInfo;
+ struct visorchipset_channel_info chanInfo;
u32 Reserved1; /* control_vm_id */
u64 Reserved2;
u32 switchNo; /* when devState.attached==1 */
@@ -126,7 +126,7 @@ typedef struct {
struct list_head entry;
u32 busNo;
struct visorchipset_state state;
- VISORCHIPSET_CHANNEL_INFO chanInfo;
+ struct visorchipset_channel_info chanInfo;
uuid_le partitionGuid;
u64 partitionHandle;
u8 *name; /* UTF8 */