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

Commit 93a94c42 authored by Roel Van Nyen's avatar Roel Van Nyen Committed by Greg Kroah-Hartman
Browse files

Staging: vt6656: Remove PUINT from ttype.h



Remove PUINT from ttype.h

Signed-off-by: default avatarRoel Van Nyen <roel.vannyen@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 57778ef9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
@@ -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;
+2 −2
Original line number Diff line number Diff line
@@ -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,
+4 −4
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ static
void
s_vGetDASA(
      PBYTE pbyRxBufferAddr,
     PUINT pcbHeaderSize,
     unsigned int *pcbHeaderSize,
     PSEthernetHeader psEthHeader
    );

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

static BOOL s_bAPModeRxCtl(
@@ -167,7 +167,7 @@ s_vProcessRxMACHeader (
      unsigned int cbPacketSize,
      BOOL bIsWEP,
      BOOL bExtIV,
     PUINT pcbHeadSize
     unsigned int *pcbHeadSize
    )
{
    PBYTE           pbyRxBuffer;
@@ -261,7 +261,7 @@ static
void
s_vGetDASA (
      PBYTE pbyRxBufferAddr,
     PUINT pcbHeaderSize,
     unsigned int *pcbHeaderSize,
     PSEthernetHeader psEthHeader
    )
{
+0 −1
Original line number Diff line number Diff line
@@ -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;