Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

staging: wilc1000: renames u16TagParamOffset variable



This patch renames u16TagParamOffset variable to tag_param_offset
to avoid camelcase.

Signed-off-by: default avatarLeo Kim <leo.kim@atmel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e1a9db87
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -241,11 +241,11 @@ static inline u16 get_asoc_id(u8 *data)
	return asoc_id;
}

static u8 *get_tim_elm(u8 *pu8msa, u16 rx_len, u16 u16TagParamOffset)
static u8 *get_tim_elm(u8 *pu8msa, u16 rx_len, u16 tag_param_offset)
{
	u16 u16index;

	u16index = u16TagParamOffset;
	u16index = tag_param_offset;

	while (u16index < (rx_len - FCS_LEN)) {
		if (pu8msa[u16index] == ITIM)