Commit dacc594d authored by Leo Kim's avatar Leo Kim Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: rename u8seqlen of struct host_if_wpa_attr



This patch renames u8seqlen of struct host_if_wpa_attr to seq_len to
avoid CamelCase naming convention.

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarTony Cho <tony.cho@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0e74c009
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ struct host_if_wpa_attr {
	u8 *key;
	const u8 *mac_addr;
	u8 *seq;
	u8 u8seqlen;
	u8 seq_len;
	u8 u8keyidx;
	u8 u8Keylen;
	u8 u8Ciphermode;
@@ -3436,7 +3436,7 @@ s32 host_int_add_rx_gtk(struct host_if_drv *hif_drv, const u8 *pu8RxGtk,

	msg.body.key_info.attr.wpa.u8keyidx = u8KeyIdx;
	msg.body.key_info.attr.wpa.u8Keylen = u8KeyLen;
	msg.body.key_info.attr.wpa.u8seqlen = u32KeyRSClen;
	msg.body.key_info.attr.wpa.seq_len = u32KeyRSClen;

	s32Error = wilc_mq_send(&gMsgQHostIF, &msg, sizeof(struct host_if_msg));
	if (s32Error)