staging: unisys: fix CamelCase in SPAR_CONTROLVM_CHANNEL_OK_CLIENT
Fix CamelCase parameter name: pChannel => ch Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7caac2fa2c
commit
600832fd3d
@@ -45,13 +45,13 @@ static const uuid_le spar_controlvm_channel_protocol_uuid =
|
||||
* channel struct withOUT needing to increment this. */
|
||||
#define ULTRA_CONTROLVM_CHANNEL_PROTOCOL_VERSIONID 1
|
||||
|
||||
#define SPAR_CONTROLVM_CHANNEL_OK_CLIENT(pChannel) \
|
||||
(spar_check_channel_client(pChannel, \
|
||||
spar_controlvm_channel_protocol_uuid, \
|
||||
"controlvm", \
|
||||
sizeof(ULTRA_CONTROLVM_CHANNEL_PROTOCOL), \
|
||||
ULTRA_CONTROLVM_CHANNEL_PROTOCOL_VERSIONID, \
|
||||
ULTRA_CONTROLVM_CHANNEL_PROTOCOL_SIGNATURE))
|
||||
#define SPAR_CONTROLVM_CHANNEL_OK_CLIENT(ch) \
|
||||
spar_check_channel_client(ch, \
|
||||
spar_controlvm_channel_protocol_uuid, \
|
||||
"controlvm", \
|
||||
sizeof(ULTRA_CONTROLVM_CHANNEL_PROTOCOL), \
|
||||
ULTRA_CONTROLVM_CHANNEL_PROTOCOL_VERSIONID, \
|
||||
ULTRA_CONTROLVM_CHANNEL_PROTOCOL_SIGNATURE)
|
||||
|
||||
#define MY_DEVICE_INDEX 0
|
||||
#define MAX_MACDATA_LEN 8 /* number of bytes for MAC address in config packet */
|
||||
|
||||
Reference in New Issue
Block a user