Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

Staging: vt6655: removed custom CHAR typedef

parent 902d2411
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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;
+0 −1
Original line number Diff line number Diff line
@@ -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;