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

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
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -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  --------------------------*/