diff options
author | Benjamin Romer <benjamin.romer@unisys.com> | 2015-03-16 13:58:00 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-23 21:53:45 +0100 |
commit | 59827f00245fabbc2d6fb628866769affd76fb7c (patch) | |
tree | 516a88d92679b112b8e82424d034754f4e13f961 | |
parent | 8f1947aceb0b97a63bd8a16657a01946a7f5242f (diff) |
staging: unisys: fix CamelCase name
Fix CamelCase global variable:
UltraDiagPoolChannelProtocolGuid => spar_diag_pool_channel_protocol_uuid
Update all references to use the fixed name.
Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/unisys/visorchipset/visorchipset_main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/staging/unisys/visorchipset/visorchipset_main.c b/drivers/staging/unisys/visorchipset/visorchipset_main.c index 7687155294dc..381d3050b048 100644 --- a/drivers/staging/unisys/visorchipset/visorchipset_main.c +++ b/drivers/staging/unisys/visorchipset/visorchipset_main.c @@ -72,7 +72,7 @@ static DEFINE_SEMAPHORE(notifier_lock); static struct controlvm_message_header g_diag_msg_hdr; static struct controlvm_message_header g_chipset_msg_hdr; static struct controlvm_message_header g_del_dump_msg_hdr; -static const uuid_le UltraDiagPoolChannelProtocolGuid = +static const uuid_le spar_diag_pool_channel_protocol_uuid = SPAR_DIAG_POOL_CHANNEL_PROTOCOL_UUID; /* 0xffffff is an invalid Bus/Device number */ static ulong g_diagpoolBusNo = 0xffffff; @@ -90,7 +90,8 @@ static struct controlvm_message_packet g_DeviceChangeStatePacket; #define FOR_VISORBUS(channel_type_guid) (!(FOR_VISORHACKBUS(channel_type_guid))) #define is_diagpool_channel(channel_type_guid) \ - (uuid_le_cmp(channel_type_guid, UltraDiagPoolChannelProtocolGuid) == 0) + (uuid_le_cmp(channel_type_guid,\ + spar_diag_pool_channel_protocol_uuid) == 0) static LIST_HEAD(BusInfoList); static LIST_HEAD(DevInfoList); |