Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 205582
b: refs/heads/master
c: ec28c7f
h: refs/heads/master
v: v3
  • Loading branch information
Charles Clément authored and Greg Kroah-Hartman committed Jun 18, 2010
1 parent 5a403b7 commit 5a0f709
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 8fa5dd133ed38cb412c42f7daca2f6de3fdbbce8
refs/heads/master: ec28c7fab4c5e5e5c168f0b48bc10bfc7f9896d5
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vt6655/card.c
Original file line number Diff line number Diff line change
Expand Up @@ -2095,7 +2095,7 @@ void
CARDvSetPowerConstraint (
void *pDeviceHandler,
BYTE byChannel,
I8 byPower
char byPower
)
{
PSDevice pDevice = (PSDevice) pDeviceHandler;
Expand Down Expand Up @@ -2253,7 +2253,7 @@ CARDbySetSupportChannels (
* Return Value: none.
*
-*/
I8
char
CARDbyGetTransmitPower (
void *pDeviceHandler
)
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vt6655/card.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ void
CARDvSetPowerConstraint (
void *pDeviceHandler,
BYTE byChannel,
I8 byPower
char byPower
);

void
Expand All @@ -205,7 +205,7 @@ CARDbySetSupportChannels (
PBYTE pbyIEs
);

I8
char
CARDbyGetTransmitPower (
void *pDeviceHandler
);
Expand Down
10 changes: 5 additions & 5 deletions trunk/drivers/staging/vt6655/device.h
Original file line number Diff line number Diff line change
Expand Up @@ -693,13 +693,13 @@ typedef struct __device_info {
BYTE byCCKPwr;
BYTE byOFDMPwrG;
BYTE byCurPwr;
I8 byCurPwrdBm;
char byCurPwrdBm;
BYTE abyCCKPwrTbl[CB_MAX_CHANNEL_24G+1];
BYTE abyOFDMPwrTbl[CB_MAX_CHANNEL+1];
I8 abyCCKDefaultPwr[CB_MAX_CHANNEL_24G+1];
I8 abyOFDMDefaultPwr[CB_MAX_CHANNEL+1];
I8 abyRegPwr[CB_MAX_CHANNEL+1];
I8 abyLocalPwr[CB_MAX_CHANNEL+1];
char abyCCKDefaultPwr[CB_MAX_CHANNEL_24G+1];
char abyOFDMDefaultPwr[CB_MAX_CHANNEL+1];
char abyRegPwr[CB_MAX_CHANNEL+1];
char abyLocalPwr[CB_MAX_CHANNEL+1];


// BaseBand Loopback Use
Expand Down
2 changes: 0 additions & 2 deletions trunk/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 char I8; /* 8-bit signed integer */

typedef unsigned char U8; /* 8-bit unsigned integer */
typedef unsigned short U16; /* 16-bit unsigned integer */
typedef unsigned long U32; /* 32-bit unsigned integer */
Expand Down

0 comments on commit 5a0f709

Please sign in to comment.