Commit 1e01f943 authored by Archana kumari's avatar Archana kumari Committed by Greg Kroah-Hartman

staging: vt6655: fixed sparse warning for static declaration in wpa2.c

This patch fixes sparse warning for static declaration in wpa2.c
Signed-off-by: default avatarArchana kumari <archanakumari959@gmail.com>
Reviewed-by: default avatarJosh Triplett <josh@joshtriplett.org>
Reviewed-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 51d6774a
......@@ -42,14 +42,14 @@ static int msglevel = MSG_LEVEL_INFO;
/*--------------------- Static Variables --------------------------*/
const unsigned char abyOUIGK[4] = { 0x00, 0x0F, 0xAC, 0x00 };
const unsigned char abyOUIWEP40[4] = { 0x00, 0x0F, 0xAC, 0x01 };
const unsigned char abyOUIWEP104[4] = { 0x00, 0x0F, 0xAC, 0x05 };
const unsigned char abyOUITKIP[4] = { 0x00, 0x0F, 0xAC, 0x02 };
const unsigned char abyOUICCMP[4] = { 0x00, 0x0F, 0xAC, 0x04 };
const unsigned char abyOUI8021X[4] = { 0x00, 0x0F, 0xAC, 0x01 };
const unsigned char abyOUIPSK[4] = { 0x00, 0x0F, 0xAC, 0x02 };
static const unsigned char abyOUIGK[4] = { 0x00, 0x0F, 0xAC, 0x00 };
static const unsigned char abyOUIWEP40[4] = { 0x00, 0x0F, 0xAC, 0x01 };
static const unsigned char abyOUIWEP104[4] = { 0x00, 0x0F, 0xAC, 0x05 };
static const unsigned char abyOUITKIP[4] = { 0x00, 0x0F, 0xAC, 0x02 };
static const unsigned char abyOUICCMP[4] = { 0x00, 0x0F, 0xAC, 0x04 };
static const unsigned char abyOUI8021X[4] = { 0x00, 0x0F, 0xAC, 0x01 };
static const unsigned char abyOUIPSK[4] = { 0x00, 0x0F, 0xAC, 0x02 };
/*--------------------- Static Functions --------------------------*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment