Skip to content

Commit

Permalink
Staging: vt6655: remove IN definition
Browse files Browse the repository at this point in the history
Remove empty IN definition used to specify input parameters.

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 May 14, 2010
1 parent 71e5106 commit 3a215e0
Show file tree
Hide file tree
Showing 36 changed files with 1,055 additions and 1,059 deletions.
44 changes: 22 additions & 22 deletions drivers/staging/vt6655/80211mgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static int msglevel =MSG_LEVEL_INFO;

void
vMgrEncodeBeacon(
IN PWLAN_FR_BEACON pFrame
PWLAN_FR_BEACON pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -123,7 +123,7 @@ vMgrEncodeBeacon(

void
vMgrDecodeBeacon(
IN PWLAN_FR_BEACON pFrame
PWLAN_FR_BEACON pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -244,7 +244,7 @@ vMgrDecodeBeacon(

void
vMgrEncodeIBSSATIM(
IN PWLAN_FR_IBSSATIM pFrame
PWLAN_FR_IBSSATIM pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -267,7 +267,7 @@ vMgrEncodeIBSSATIM(

void
vMgrDecodeIBSSATIM(
IN PWLAN_FR_IBSSATIM pFrame
PWLAN_FR_IBSSATIM pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -289,7 +289,7 @@ vMgrDecodeIBSSATIM(

void
vMgrEncodeDisassociation(
IN PWLAN_FR_DISASSOC pFrame
PWLAN_FR_DISASSOC pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -317,7 +317,7 @@ vMgrEncodeDisassociation(

void
vMgrDecodeDisassociation(
IN PWLAN_FR_DISASSOC pFrame
PWLAN_FR_DISASSOC pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -343,7 +343,7 @@ vMgrDecodeDisassociation(

void
vMgrEncodeAssocRequest(
IN PWLAN_FR_ASSOCREQ pFrame
PWLAN_FR_ASSOCREQ pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -370,7 +370,7 @@ vMgrEncodeAssocRequest(

void
vMgrDecodeAssocRequest(
IN PWLAN_FR_ASSOCREQ pFrame
PWLAN_FR_ASSOCREQ pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -436,7 +436,7 @@ vMgrDecodeAssocRequest(

void
vMgrEncodeAssocResponse(
IN PWLAN_FR_ASSOCRESP pFrame
PWLAN_FR_ASSOCRESP pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -468,7 +468,7 @@ vMgrEncodeAssocResponse(

void
vMgrDecodeAssocResponse(
IN PWLAN_FR_ASSOCRESP pFrame
PWLAN_FR_ASSOCRESP pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -514,7 +514,7 @@ vMgrDecodeAssocResponse(

void
vMgrEncodeReassocRequest(
IN PWLAN_FR_REASSOCREQ pFrame
PWLAN_FR_REASSOCREQ pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -546,7 +546,7 @@ vMgrEncodeReassocRequest(

void
vMgrDecodeReassocRequest(
IN PWLAN_FR_REASSOCREQ pFrame
PWLAN_FR_REASSOCREQ pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -618,7 +618,7 @@ vMgrDecodeReassocRequest(

void
vMgrEncodeProbeRequest(
IN PWLAN_FR_PROBEREQ pFrame
PWLAN_FR_PROBEREQ pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -639,7 +639,7 @@ vMgrEncodeProbeRequest(

void
vMgrDecodeProbeRequest(
IN PWLAN_FR_PROBEREQ pFrame
PWLAN_FR_PROBEREQ pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -692,7 +692,7 @@ vMgrDecodeProbeRequest(

void
vMgrEncodeProbeResponse(
IN PWLAN_FR_PROBERESP pFrame
PWLAN_FR_PROBERESP pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -726,7 +726,7 @@ vMgrEncodeProbeResponse(

void
vMgrDecodeProbeResponse(
IN PWLAN_FR_PROBERESP pFrame
PWLAN_FR_PROBERESP pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -840,7 +840,7 @@ vMgrDecodeProbeResponse(

void
vMgrEncodeAuthen(
IN PWLAN_FR_AUTHEN pFrame
PWLAN_FR_AUTHEN pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -871,7 +871,7 @@ vMgrEncodeAuthen(

void
vMgrDecodeAuthen(
IN PWLAN_FR_AUTHEN pFrame
PWLAN_FR_AUTHEN pFrame
)
{
PWLAN_IE pItem;
Expand Down Expand Up @@ -911,7 +911,7 @@ vMgrDecodeAuthen(

void
vMgrEncodeDeauthen(
IN PWLAN_FR_DEAUTHEN pFrame
PWLAN_FR_DEAUTHEN pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -938,7 +938,7 @@ vMgrEncodeDeauthen(

void
vMgrDecodeDeauthen(
IN PWLAN_FR_DEAUTHEN pFrame
PWLAN_FR_DEAUTHEN pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand All @@ -964,7 +964,7 @@ vMgrDecodeDeauthen(

void
vMgrEncodeReassocResponse(
IN PWLAN_FR_REASSOCRESP pFrame
PWLAN_FR_REASSOCRESP pFrame
)
{
pFrame->pHdr = (PUWLAN_80211HDR)pFrame->pBuf;
Expand Down Expand Up @@ -997,7 +997,7 @@ vMgrEncodeReassocResponse(

void
vMgrDecodeReassocResponse(
IN PWLAN_FR_REASSOCRESP pFrame
PWLAN_FR_REASSOCRESP pFrame
)
{
PWLAN_IE pItem;
Expand Down
44 changes: 22 additions & 22 deletions drivers/staging/vt6655/80211mgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -716,112 +716,112 @@ typedef struct tagWLAN_FR_DEAUTHEN {

void
vMgrEncodeBeacon(
IN PWLAN_FR_BEACON pFrame
PWLAN_FR_BEACON pFrame
);

void
vMgrDecodeBeacon(
IN PWLAN_FR_BEACON pFrame
PWLAN_FR_BEACON pFrame
);

void
vMgrEncodeIBSSATIM(
IN PWLAN_FR_IBSSATIM pFrame
PWLAN_FR_IBSSATIM pFrame
);

void
vMgrDecodeIBSSATIM(
IN PWLAN_FR_IBSSATIM pFrame
PWLAN_FR_IBSSATIM pFrame
);

void
vMgrEncodeDisassociation(
IN PWLAN_FR_DISASSOC pFrame
PWLAN_FR_DISASSOC pFrame
);

void
vMgrDecodeDisassociation(
IN PWLAN_FR_DISASSOC pFrame
PWLAN_FR_DISASSOC pFrame
);

void
vMgrEncodeAssocRequest(
IN PWLAN_FR_ASSOCREQ pFrame
PWLAN_FR_ASSOCREQ pFrame
);

void
vMgrDecodeAssocRequest(
IN PWLAN_FR_ASSOCREQ pFrame
PWLAN_FR_ASSOCREQ pFrame
);

void
vMgrEncodeAssocResponse(
IN PWLAN_FR_ASSOCRESP pFrame
PWLAN_FR_ASSOCRESP pFrame
);

void
vMgrDecodeAssocResponse(
IN PWLAN_FR_ASSOCRESP pFrame
PWLAN_FR_ASSOCRESP pFrame
);

void
vMgrEncodeReassocRequest(
IN PWLAN_FR_REASSOCREQ pFrame
PWLAN_FR_REASSOCREQ pFrame
);

void
vMgrDecodeReassocRequest(
IN PWLAN_FR_REASSOCREQ pFrame
PWLAN_FR_REASSOCREQ pFrame
);

void
vMgrEncodeProbeRequest(
IN PWLAN_FR_PROBEREQ pFrame
PWLAN_FR_PROBEREQ pFrame
);

void
vMgrDecodeProbeRequest(
IN PWLAN_FR_PROBEREQ pFrame
PWLAN_FR_PROBEREQ pFrame
);

void
vMgrEncodeProbeResponse(
IN PWLAN_FR_PROBERESP pFrame
PWLAN_FR_PROBERESP pFrame
);

void
vMgrDecodeProbeResponse(
IN PWLAN_FR_PROBERESP pFrame
PWLAN_FR_PROBERESP pFrame
);

void
vMgrEncodeAuthen(
IN PWLAN_FR_AUTHEN pFrame
PWLAN_FR_AUTHEN pFrame
);

void
vMgrDecodeAuthen(
IN PWLAN_FR_AUTHEN pFrame
PWLAN_FR_AUTHEN pFrame
);

void
vMgrEncodeDeauthen(
IN PWLAN_FR_DEAUTHEN pFrame
PWLAN_FR_DEAUTHEN pFrame
);

void
vMgrDecodeDeauthen(
IN PWLAN_FR_DEAUTHEN pFrame
PWLAN_FR_DEAUTHEN pFrame
);

void
vMgrEncodeReassocResponse(
IN PWLAN_FR_REASSOCRESP pFrame
PWLAN_FR_REASSOCRESP pFrame
);

void
vMgrDecodeReassocResponse(
IN PWLAN_FR_REASSOCRESP pFrame
PWLAN_FR_REASSOCRESP pFrame
);

#endif// __80211MGR_H__
6 changes: 3 additions & 3 deletions drivers/staging/vt6655/IEEE11h.c
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,8 @@ static BOOL s_bRxTPCReq(PSMgmtObject pMgmt, PWLAN_FRAME_TPCREQ pTPCReq, BYTE byR
-*/
BOOL
IEEE11hbMgrRxAction (
IN void *pMgmtHandle,
IN void *pRxPacket
void *pMgmtHandle,
void *pRxPacket
)
{
PSMgmtObject pMgmt = (PSMgmtObject) pMgmtHandle;
Expand Down Expand Up @@ -265,7 +265,7 @@ IEEE11hbMgrRxAction (


BOOL IEEE11hbMSRRepTx (
IN void *pMgmtHandle
void *pMgmtHandle
)
{
PSMgmtObject pMgmt = (PSMgmtObject) pMgmtHandle;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/vt6655/IEEE11h.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
/*--------------------- Export Functions --------------------------*/

BOOL IEEE11hbMSRRepTx (
IN void *pMgmtHandle
void *pMgmtHandle
);

#endif // __IEEE11h_H__
Loading

0 comments on commit 3a215e0

Please sign in to comment.