Skip to content

Commit

Permalink
Staging: vt6655: removed custom CHAR typedef
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Clément <caratorn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Charles Clément authored and Greg Kroah-Hartman committed Jun 18, 2010
1 parent 902d241 commit 5a4197b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/country.h
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ typedef enum _COUNTRY_CODE {
typedef struct tagSCountryTable
{
BYTE byChannelCountryCode; /* The country code */
CHAR chCountryCode[2];
char chCountryCode[2];
BYTE bChannelIdxList[CB_MAX_CHANNEL]; /* Available channels Index */
BYTE byPower[CB_MAX_CHANNEL];
} SCountryTable, *PSCountryTable;
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/vt6655/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,8 @@ typedef struct __device_info {
SHORT sPSetPointOFDMA;
LONG lPFormulaOffset;
SHORT sPThreshold;
CHAR cAdjustStep;
CHAR cMinTxAGC;
char cAdjustStep;
char cMinTxAGC;

// For RF Power table
BYTE byCCKPwr;
Expand Down
1 change: 0 additions & 1 deletion drivers/staging/vt6655/ttype.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ typedef int BOOL;
* but it doesn't matter if they're signed or unsigned.
*/

typedef char CHAR;
typedef signed short SHORT;
typedef signed int INT;
typedef signed long LONG;
Expand Down

0 comments on commit 5a4197b

Please sign in to comment.