mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
Staging: vt6656: Remove PUINT from ttype.h
Remove PUINT from ttype.h Signed-off-by: Roel Van Nyen <roel.vannyen@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
57778ef92c
commit
93a94c42b1
@ -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;
|
||||
|
@ -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,
|
||||
|
@ -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
|
||||
)
|
||||
{
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user