staging: rtl8188eu: convert unsigned char arrays to u8
Change the type of some arrays from unsigned char to u8. Signed-off-by: Michael Straube <straube.linux@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
55fc57809a
Коммит
0ef9f86b93
|
@ -22,15 +22,15 @@ static u8 null_addr[ETH_ALEN] = {0, 0, 0, 0, 0, 0};
|
|||
/**************************************************
|
||||
OUI definitions for the vendor specific IE
|
||||
***************************************************/
|
||||
unsigned char RTW_WPA_OUI[] = {0x00, 0x50, 0xf2, 0x01};
|
||||
unsigned char WMM_OUI[] = {0x00, 0x50, 0xf2, 0x02};
|
||||
unsigned char WPS_OUI[] = {0x00, 0x50, 0xf2, 0x04};
|
||||
unsigned char P2P_OUI[] = {0x50, 0x6F, 0x9A, 0x09};
|
||||
u8 RTW_WPA_OUI[] = {0x00, 0x50, 0xf2, 0x01};
|
||||
u8 WMM_OUI[] = {0x00, 0x50, 0xf2, 0x02};
|
||||
u8 WPS_OUI[] = {0x00, 0x50, 0xf2, 0x04};
|
||||
u8 P2P_OUI[] = {0x50, 0x6F, 0x9A, 0x09};
|
||||
|
||||
unsigned char WMM_PARA_OUI[] = {0x00, 0x50, 0xf2, 0x02, 0x01, 0x01};
|
||||
u8 WMM_PARA_OUI[] = {0x00, 0x50, 0xf2, 0x02, 0x01, 0x01};
|
||||
|
||||
unsigned char WPA_TKIP_CIPHER[4] = {0x00, 0x50, 0xf2, 0x02};
|
||||
unsigned char RSN_TKIP_CIPHER[4] = {0x00, 0x0f, 0xac, 0x02};
|
||||
u8 WPA_TKIP_CIPHER[4] = {0x00, 0x50, 0xf2, 0x02};
|
||||
u8 RSN_TKIP_CIPHER[4] = {0x00, 0x0f, 0xac, 0x02};
|
||||
|
||||
/********************************************************
|
||||
MCS rate definitions
|
||||
|
@ -5207,7 +5207,7 @@ u8 setkey_hdl(struct adapter *padapter, u8 *pbuf)
|
|||
struct setkey_parm *pparm = (struct setkey_parm *)pbuf;
|
||||
struct mlme_ext_priv *pmlmeext = &padapter->mlmeextpriv;
|
||||
struct mlme_ext_info *pmlmeinfo = &pmlmeext->mlmext_info;
|
||||
unsigned char null_sta[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
u8 null_sta[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
|
||||
|
||||
/* main tx key for wep. */
|
||||
if (pparm->set_tx)
|
||||
|
|
|
@ -12,20 +12,20 @@
|
|||
#include <drv_types.h>
|
||||
#include <wifi.h>
|
||||
|
||||
static unsigned char ARTHEROS_OUI1[] = {0x00, 0x03, 0x7f};
|
||||
static unsigned char ARTHEROS_OUI2[] = {0x00, 0x13, 0x74};
|
||||
static u8 ARTHEROS_OUI1[] = {0x00, 0x03, 0x7f};
|
||||
static u8 ARTHEROS_OUI2[] = {0x00, 0x13, 0x74};
|
||||
|
||||
static unsigned char BROADCOM_OUI1[] = {0x00, 0x10, 0x18};
|
||||
static unsigned char BROADCOM_OUI2[] = {0x00, 0x0a, 0xf7};
|
||||
static u8 BROADCOM_OUI1[] = {0x00, 0x10, 0x18};
|
||||
static u8 BROADCOM_OUI2[] = {0x00, 0x0a, 0xf7};
|
||||
|
||||
static unsigned char CISCO_OUI[] = {0x00, 0x40, 0x96};
|
||||
static unsigned char MARVELL_OUI[] = {0x00, 0x50, 0x43};
|
||||
static unsigned char RALINK_OUI[] = {0x00, 0x0c, 0x43};
|
||||
static unsigned char REALTEK_OUI[] = {0x00, 0xe0, 0x4c};
|
||||
static unsigned char AIRGOCAP_OUI[] = {0x00, 0x0a, 0xf5};
|
||||
static unsigned char EPIGRAM_OUI[] = {0x00, 0x90, 0x4c};
|
||||
static u8 CISCO_OUI[] = {0x00, 0x40, 0x96};
|
||||
static u8 MARVELL_OUI[] = {0x00, 0x50, 0x43};
|
||||
static u8 RALINK_OUI[] = {0x00, 0x0c, 0x43};
|
||||
static u8 REALTEK_OUI[] = {0x00, 0xe0, 0x4c};
|
||||
static u8 AIRGOCAP_OUI[] = {0x00, 0x0a, 0xf5};
|
||||
static u8 EPIGRAM_OUI[] = {0x00, 0x90, 0x4c};
|
||||
|
||||
unsigned char REALTEK_96B_IE[] = {0x00, 0xe0, 0x4c, 0x02, 0x01, 0x20};
|
||||
u8 REALTEK_96B_IE[] = {0x00, 0xe0, 0x4c, 0x02, 0x01, 0x20};
|
||||
|
||||
#define R2T_PHY_DELAY (0)
|
||||
|
||||
|
|
|
@ -211,9 +211,9 @@ int hostapd_mode_init(struct adapter *padapter);
|
|||
void hostapd_mode_unload(struct adapter *padapter);
|
||||
#endif
|
||||
|
||||
extern unsigned char WPA_TKIP_CIPHER[4];
|
||||
extern unsigned char RSN_TKIP_CIPHER[4];
|
||||
extern unsigned char REALTEK_96B_IE[];
|
||||
extern u8 WPA_TKIP_CIPHER[4];
|
||||
extern u8 RSN_TKIP_CIPHER[4];
|
||||
extern u8 REALTEK_96B_IE[];
|
||||
extern const u8 MCS_rate_1R[16];
|
||||
|
||||
void rtw_joinbss_event_prehandle(struct adapter *adapter, u8 *pbuf);
|
||||
|
|
|
@ -81,12 +81,12 @@
|
|||
#define _54M_RATE_ 11
|
||||
|
||||
|
||||
extern unsigned char RTW_WPA_OUI[];
|
||||
extern unsigned char WMM_OUI[];
|
||||
extern unsigned char WPS_OUI[];
|
||||
extern unsigned char P2P_OUI[];
|
||||
extern u8 RTW_WPA_OUI[];
|
||||
extern u8 WMM_OUI[];
|
||||
extern u8 WPS_OUI[];
|
||||
extern u8 P2P_OUI[];
|
||||
|
||||
extern unsigned char WMM_PARA_OUI[];
|
||||
extern u8 WMM_PARA_OUI[];
|
||||
|
||||
/* Channel Plan Type. */
|
||||
/* Note: */
|
||||
|
|
Загрузка…
Ссылка в новой задаче