Commit 5c9824e1 authored by Charles Clément's avatar Charles Clément Committed by Greg Kroah-Hartman

Staging: vt6655: remove custom UCHAR typedef

Signed-off-by: default avatarCharles Clément <caratorn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent b83cc2ed
...@@ -218,7 +218,7 @@ typedef enum __device_init_type { ...@@ -218,7 +218,7 @@ typedef enum __device_init_type {
#define NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED 0x01 #define NDIS_802_11_PMKID_CANDIDATE_PREAUTH_ENABLED 0x01
// PMKID Structures // PMKID Structures
typedef UCHAR NDIS_802_11_PMKID_VALUE[16]; typedef unsigned char NDIS_802_11_PMKID_VALUE[16];
typedef enum _NDIS_802_11_WEP_STATUS typedef enum _NDIS_802_11_WEP_STATUS
......
...@@ -340,7 +340,8 @@ static void device_free_rd0_ring(PSDevice pDevice); ...@@ -340,7 +340,8 @@ static void device_free_rd0_ring(PSDevice pDevice);
static void device_free_rd1_ring(PSDevice pDevice); static void device_free_rd1_ring(PSDevice pDevice);
static void device_free_rings(PSDevice pDevice); static void device_free_rings(PSDevice pDevice);
static void device_free_frag_buf(PSDevice pDevice); static void device_free_frag_buf(PSDevice pDevice);
static int Config_FileGetParameter(UCHAR *string, UCHAR *dest,UCHAR *source); static int Config_FileGetParameter(unsigned char *string,
unsigned char *dest, unsigned char *source);
/*--------------------- Export Variables --------------------------*/ /*--------------------- Export Variables --------------------------*/
...@@ -2978,9 +2979,10 @@ static inline u32 ether_crc(int length, unsigned char *data) ...@@ -2978,9 +2979,10 @@ static inline u32 ether_crc(int length, unsigned char *data)
} }
//2008-8-4 <add> by chester //2008-8-4 <add> by chester
static int Config_FileGetParameter(UCHAR *string, UCHAR *dest,UCHAR *source) static int Config_FileGetParameter(unsigned char *string,
unsigned char *dest, unsigned char *source)
{ {
UCHAR buf1[100]; unsigned char buf1[100];
int source_len = strlen(source); int source_len = strlen(source);
memset(buf1,0,100); memset(buf1,0,100);
...@@ -2993,9 +2995,9 @@ static int Config_FileGetParameter(UCHAR *string, UCHAR *dest,UCHAR *source) ...@@ -2993,9 +2995,9 @@ static int Config_FileGetParameter(UCHAR *string, UCHAR *dest,UCHAR *source)
} }
int Config_FileOperation(PSDevice pDevice,BOOL fwrite,unsigned char *Parameter) { int Config_FileOperation(PSDevice pDevice,BOOL fwrite,unsigned char *Parameter) {
UCHAR *config_path=CONFIG_PATH; unsigned char *config_path = CONFIG_PATH;
UCHAR *buffer=NULL; unsigned char *buffer = NULL;
UCHAR tmpbuffer[20]; unsigned char tmpbuffer[20];
struct file *filp=NULL; struct file *filp=NULL;
mm_segment_t old_fs = get_fs(); mm_segment_t old_fs = get_fs();
//int oldfsuid=0,oldfsgid=0; //int oldfsuid=0,oldfsgid=0;
......
...@@ -68,7 +68,6 @@ typedef int BOOL; ...@@ -68,7 +68,6 @@ typedef int BOOL;
* but it doesn't matter if they're signed or unsigned. * but it doesn't matter if they're signed or unsigned.
*/ */
typedef unsigned char UCHAR;
typedef unsigned short USHORT; typedef unsigned short USHORT;
typedef unsigned int UINT; typedef unsigned int UINT;
typedef unsigned long ULONG; typedef unsigned long ULONG;
......
...@@ -88,7 +88,7 @@ typedef void (*TimerFunction)(ULONG); ...@@ -88,7 +88,7 @@ typedef void (*TimerFunction)(ULONG);
//+++ NDIS related //+++ NDIS related
typedef UCHAR NDIS_802_11_MAC_ADDRESS[6]; typedef unsigned char NDIS_802_11_MAC_ADDRESS[6];
typedef struct _NDIS_802_11_AI_REQFI typedef struct _NDIS_802_11_AI_REQFI
{ {
USHORT Capabilities; USHORT Capabilities;
......
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