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

Commit 6f8c13c7 authored by Andres More's avatar Andres More Committed by Greg Kroah-Hartman
Browse files

Staging: vt6656: code cleanup, removed OUT definition



Remoted empty OUT define in ttype.h and its usage across the code.

Signed-off-by: default avatarAndres More <more.andres@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent fa10b25f
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -762,9 +762,9 @@ BBvCaculateParameter (
      UINT cbFrameLength,
      WORD wRate,
      BYTE byPacketType,
    OUT PWORD pwPhyLen,
    OUT PBYTE pbyPhySrv,
    OUT PBYTE pbyPhySgn
     PWORD pwPhyLen,
     PBYTE pbyPhySrv,
     PBYTE pbyPhySgn
    )
{
    UINT cbBitCount;
+3 −3
Original line number Diff line number Diff line
@@ -110,9 +110,9 @@ BBvCaculateParameter (
      UINT cbFrameLength,
      WORD wRate,
      BYTE byPacketType,
    OUT PWORD pwPhyLen,
    OUT PBYTE pbyPhySrv,
    OUT PBYTE pbyPhySgn
     PWORD pwPhyLen,
     PBYTE pbyPhySrv,
     PBYTE pbyPhySgn
    );

// timer for antenna diversity
+2 −2
Original line number Diff line number Diff line
@@ -772,7 +772,7 @@ BOOL
BSSbIsSTAInNodeDB(
     HANDLE hDeviceContext,
     PBYTE abyDstAddr,
    OUT PUINT puNodeIndex
     PUINT puNodeIndex
    )
{
    PSDevice        pDevice = (PSDevice)hDeviceContext;
@@ -807,7 +807,7 @@ BSSbIsSTAInNodeDB(
void
BSSvCreateOneNode(
     HANDLE hDeviceContext,
    OUT PUINT puNodeIndex
     PUINT puNodeIndex
    )
{

+2 −2
Original line number Diff line number Diff line
@@ -301,13 +301,13 @@ BOOL
BSSbIsSTAInNodeDB(
     HANDLE hDeviceContext,
     PBYTE abyDstAddr,
    OUT PUINT puNodeIndex
     PUINT puNodeIndex
    );

void
BSSvCreateOneNode(
     HANDLE hDeviceContext,
    OUT PUINT puNodeIndex
     PUINT puNodeIndex
    );

void
+2 −2
Original line number Diff line number Diff line
@@ -224,8 +224,8 @@ void
CARDvCaculateOFDMRParameter (
      WORD wRate,
      BYTE byBBType,
    OUT PBYTE pbyTxRate,
    OUT PBYTE pbyRsvTime
     PBYTE pbyTxRate,
     PBYTE pbyRsvTime
    )
{
    switch (wRate) {
Loading