Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 206047
b: refs/heads/master
c: 93a94c4
h: refs/heads/master
i:
  206045: b75b487
  206043: e1f8688
  206039: d3d2043
  206031: 1d646c9
  206015: 2b52520
v: v3
  • Loading branch information
Roel Van Nyen authored and Greg Kroah-Hartman committed Aug 3, 2010
1 parent 7e640b8 commit 1c48a86
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 10 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: 57778ef92c56b06b76b8ef52fd24dd6a63bec21d
refs/heads/master: 93a94c42b1b4f455314230e6b343bc6a23f26854
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vt6656/bssdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ BOOL BSSbUpdateToBSSList(void *hDeviceContext,

BOOL BSSbIsSTAInNodeDB(void *hDeviceContext,
PBYTE abyDstAddr,
PUINT puNodeIndex)
unsigned int *puNodeIndex)
{
PSDevice pDevice = (PSDevice)hDeviceContext;
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
Expand Down Expand Up @@ -765,7 +765,7 @@ BOOL BSSbIsSTAInNodeDB(void *hDeviceContext,
* None
*
-*/
void BSSvCreateOneNode(void *hDeviceContext, PUINT puNodeIndex)
void BSSvCreateOneNode(void *hDeviceContext, unsigned int *puNodeIndex)
{

PSDevice pDevice = (PSDevice)hDeviceContext;
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/staging/vt6656/bssdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,9 +278,9 @@ BOOL BSSbUpdateToBSSList(void *hDeviceContext,

BOOL BSSbIsSTAInNodeDB(void *hDeviceContext,
PBYTE abyDstAddr,
PUINT puNodeIndex);
unsigned int *puNodeIndex);

void BSSvCreateOneNode(void *hDeviceContext, PUINT puNodeIndex);
void BSSvCreateOneNode(void *hDeviceContext, unsigned int *puNodeIndex);

void BSSvUpdateAPNode(void *hDeviceContext,
PWORD pwCapInfo,
Expand Down
8 changes: 4 additions & 4 deletions trunk/drivers/staging/vt6656/dpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ static
void
s_vGetDASA(
PBYTE pbyRxBufferAddr,
PUINT pcbHeaderSize,
unsigned int *pcbHeaderSize,
PSEthernetHeader psEthHeader
);

Expand All @@ -92,7 +92,7 @@ s_vProcessRxMACHeader (
unsigned int cbPacketSize,
BOOL bIsWEP,
BOOL bExtIV,
PUINT pcbHeadSize
unsigned int *pcbHeadSize
);

static BOOL s_bAPModeRxCtl(
Expand Down Expand Up @@ -167,7 +167,7 @@ s_vProcessRxMACHeader (
unsigned int cbPacketSize,
BOOL bIsWEP,
BOOL bExtIV,
PUINT pcbHeadSize
unsigned int *pcbHeadSize
)
{
PBYTE pbyRxBuffer;
Expand Down Expand Up @@ -261,7 +261,7 @@ static
void
s_vGetDASA (
PBYTE pbyRxBufferAddr,
PUINT pcbHeaderSize,
unsigned int *pcbHeaderSize,
PSEthernetHeader psEthHeader
)
{
Expand Down
1 change: 0 additions & 1 deletion trunk/drivers/staging/vt6656/ttype.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ typedef unsigned long ULONG_PTR; // 32-bit
typedef unsigned long DWORD_PTR; // 32-bit

// boolean pointer
typedef unsigned int * PUINT;

typedef BYTE * PBYTE;

Expand Down

0 comments on commit 1c48a86

Please sign in to comment.