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

Staging: vt6655: removed custom CHAR typedef

Signed-off-by: default avatarCharles Clément <caratorn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 902d2411
...@@ -162,7 +162,7 @@ typedef enum _COUNTRY_CODE { ...@@ -162,7 +162,7 @@ typedef enum _COUNTRY_CODE {
typedef struct tagSCountryTable typedef struct tagSCountryTable
{ {
BYTE byChannelCountryCode; /* The country code */ BYTE byChannelCountryCode; /* The country code */
CHAR chCountryCode[2]; char chCountryCode[2];
BYTE bChannelIdxList[CB_MAX_CHANNEL]; /* Available channels Index */ BYTE bChannelIdxList[CB_MAX_CHANNEL]; /* Available channels Index */
BYTE byPower[CB_MAX_CHANNEL]; BYTE byPower[CB_MAX_CHANNEL];
} SCountryTable, *PSCountryTable; } SCountryTable, *PSCountryTable;
......
...@@ -686,8 +686,8 @@ typedef struct __device_info { ...@@ -686,8 +686,8 @@ typedef struct __device_info {
SHORT sPSetPointOFDMA; SHORT sPSetPointOFDMA;
LONG lPFormulaOffset; LONG lPFormulaOffset;
SHORT sPThreshold; SHORT sPThreshold;
CHAR cAdjustStep; char cAdjustStep;
CHAR cMinTxAGC; char cMinTxAGC;
// For RF Power table // For RF Power table
BYTE byCCKPwr; BYTE byCCKPwr;
......
...@@ -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 char CHAR;
typedef signed short SHORT; typedef signed short SHORT;
typedef signed int INT; typedef signed int INT;
typedef signed long LONG; typedef signed long LONG;
......
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