summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Kim <leo.kim@atmel.com>2016-01-28 10:13:37 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-04 02:29:56 +0300
commit6c25d7cbabb287956643775eabef1a1a2808dcaa (patch)
tree2f3af52deb2bc5c38796a1019c2b2e7988f872ad
parente1a9db87a6cfa357c02cbcbaf9c351571b237c41 (diff)
downloadlinux-6c25d7cbabb287956643775eabef1a1a2808dcaa.tar.xz
staging: wilc1000: renames u16TagParamOffset variable
This patch renames u16TagParamOffset variable to tag_param_offset to avoid camelcase. Signed-off-by: Leo Kim <leo.kim@atmel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/wilc1000/coreconfigurator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/wilc1000/coreconfigurator.c b/drivers/staging/wilc1000/coreconfigurator.c
index ed626b8fa9a0..2f790f5a398c 100644
--- a/drivers/staging/wilc1000/coreconfigurator.c
+++ b/drivers/staging/wilc1000/coreconfigurator.c
@@ -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)