Skip to content

Commit

Permalink
Staging: vt6655: remove custom LONG 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 7ca3019 commit b83cc2e
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 22 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/vt6655/bssdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ BSSbUpdateToBSSList (
PSDevice pDevice = (PSDevice)hDeviceContext;
PSMgmtObject pMgmt = pDevice->pMgmt;
PSRxMgmtPacket pRxPacket = (PSRxMgmtPacket)pRxPacketContext;
LONG ldBm;
long ldBm;
BOOL bParsingQuiet = FALSE;
PWLAN_IE_QUIET pQuiet = NULL;

Expand Down Expand Up @@ -1629,8 +1629,8 @@ void s_vCheckSensitivity(
pBSSList = BSSpAddrIsInBSSList(pDevice, pMgmt->abyCurrBSSID, (PWLAN_IE_SSID)pMgmt->abyCurrSSID);
if (pBSSList != NULL) {
// Updata BB Reg if RSSI is too strong.
LONG LocalldBmAverage = 0;
LONG uNumofdBm = 0;
long LocalldBmAverage = 0;
long uNumofdBm = 0;
for (ii = 0; ii < RSSI_STAT_COUNT; ii++) {
if (pBSSList->ldBmAverage[ii] != 0) {
uNumofdBm ++;
Expand Down
6 changes: 3 additions & 3 deletions drivers/staging/vt6655/bssdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ typedef struct tagKnownBSS {

// WORD wATIMWindow;
BYTE byRSSIStatCnt;
LONG ldBmMAX;
LONG ldBmAverage[RSSI_STAT_COUNT];
LONG ldBmAverRange;
long ldBmMAX;
long ldBmAverage[RSSI_STAT_COUNT];
long ldBmAverRange;
//For any BSSID selection improvment
BOOL bSelected;

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 @@ -666,7 +666,7 @@ typedef struct __device_info {
BYTE byBBVGANew;
BYTE byBBVGACurrent;
BYTE abyBBVGA[BB_VGA_LEVEL];
LONG ldBmThreshold[BB_VGA_LEVEL];
long ldBmThreshold[BB_VGA_LEVEL];

BYTE byBBPreEDRSSI;
BYTE byBBPreEDIndex;
Expand All @@ -684,7 +684,7 @@ typedef struct __device_info {
short sPSetPointCCK;
short sPSetPointOFDMG;
short sPSetPointOFDMA;
LONG lPFormulaOffset;
long lPFormulaOffset;
short sPThreshold;
char cAdjustStep;
char cMinTxAGC;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/device_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2830,7 +2830,7 @@ static irqreturn_t device_intr(int irq, void *dev_instance) {
//pDevice->bBeaconSent = FALSE;
} else {
if ((pDevice->bUpdateBBVGA) && (pDevice->bLinkPass == TRUE) && (pDevice->uCurrRSSI != 0)) {
LONG ldBm;
long ldBm;

RFvRSSITodBm(pDevice, (BYTE) pDevice->uCurrRSSI, &ldBm);
for (ii=0;ii<BB_VGA_LEVEL;ii++) {
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/vt6655/dpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ device_receive_frame (
SKeyItem STempKey;
// 802.11h RPI
DWORD dwDuration = 0;
LONG ldBm = 0;
LONG ldBmThreshold = 0;
long ldBm = 0;
long ldBmThreshold = 0;
PS802_11Header pMACHeader;
BOOL bRxeapol_key = FALSE;

Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/ioctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq) {
BYTE abyNullAddr[] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
DWORD dwKeyIndex= 0;
BYTE abyScanSSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
LONG ldBm;
long ldBm;

pReq->wResult = 0;

Expand Down
12 changes: 6 additions & 6 deletions drivers/staging/vt6655/mib.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ typedef struct tagSDot11Counters {
// MIB2 counter
//
typedef struct tagSMib2Counter {
LONG ifIndex;
long ifIndex;
char ifDescr[256]; // max size 255 plus zero ending
// e.g. "interface 1"
LONG ifType;
LONG ifMtu;
long ifType;
long ifMtu;
DWORD ifSpeed;
BYTE ifPhysAddress[ETH_ALEN];
LONG ifAdminStatus;
LONG ifOperStatus;
long ifAdminStatus;
long ifOperStatus;
DWORD ifLastChange;
DWORD ifInOctets;
DWORD ifInUcastPkts;
Expand Down Expand Up @@ -111,7 +111,7 @@ typedef struct tagSMib2Counter {
// RMON counter
//
typedef struct tagSRmonCounter {
LONG etherStatsIndex;
long etherStatsIndex;
DWORD etherStatsDataSource;
DWORD etherStatsDropEvents;
DWORD etherStatsOctets;
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/vt6655/rf.c
Original file line number Diff line number Diff line change
Expand Up @@ -1209,8 +1209,8 @@ RFvRSSITodBm (
)
{
BYTE byIdx = (((byCurrRSSI & 0xC0) >> 6) & 0x03);
LONG b = (byCurrRSSI & 0x3F);
LONG a = 0;
long b = (byCurrRSSI & 0x3F);
long a = 0;
BYTE abyAIROHARF[4] = {0, 18, 0, 40};

switch (pDevice->byRFType) {
Expand Down
2 changes: 0 additions & 2 deletions drivers/staging/vt6655/ttype.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ typedef int BOOL;
* but it doesn't matter if they're signed or unsigned.
*/

typedef signed long LONG;

typedef unsigned char UCHAR;
typedef unsigned short USHORT;
typedef unsigned int UINT;
Expand Down

0 comments on commit b83cc2e

Please sign in to comment.