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

Commit a4f533fd authored by Iker Pedrosa's avatar Iker Pedrosa Committed by Greg Kroah-Hartman
Browse files

Staging: winbond: mds: fixed some lines over 80 characters



Fixed some coding style issues

Signed-off-by: default avatarIker Pedrosa <ikerpedrosam@gmail.com>
Acked-by: default avatarPavel Machek <pavel@ucw.cz>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 717d812f
Loading
Loading
Loading
Loading
+33 −23
Original line number Diff line number Diff line
@@ -15,7 +15,8 @@ Mds_initial(struct wbsoft_priv *adapter)
	return hal_get_tx_buffer(&adapter->sHwData, &pMds->pTxBuffer);
}

static void Mds_DurationSet(struct wbsoft_priv *adapter,  struct wb35_descriptor *pDes,  u8 *buffer)
static void Mds_DurationSet(struct wbsoft_priv *adapter,
			    struct wb35_descriptor *pDes, u8 *buffer)
{
	struct T00_descriptor *pT00;
	struct T01_descriptor *pT01;
@@ -43,9 +44,10 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
	 * Set RTS/CTS mechanism
	 ******************************************/
	if (!boGroupAddr) {
		/* NOTE : If the protection mode is enabled and the MSDU will be fragmented,
		 *		 the tx rates of MPDUs will all be DSSS rates. So it will not use
		 *		 CTS-to-self in this case. CTS-To-self will only be used when without
		/* NOTE : If the protection mode is enabled and the MSDU will
		 *	  be fragmented, the tx rates of MPDUs will all be DSSS
		 *	  rates. So it will not use CTS-to-self in this case.
		 *	  CTS-To-self will only be used when without
		 *	  fragmentation. -- 20050112 */
		BodyLen = (u16)pT00->T00_frame_length;	/* include 802.11 header */
		BodyLen += 4;	/* CRC */
@@ -101,7 +103,8 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
				else
					Duration += SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME;

				Duration += (((112 + Rate-1) / Rate) + DEFAULT_SIFSTIME);
				Duration += (((112 + Rate-1) / Rate) +
					     DEFAULT_SIFSTIME);
			}
		}

@@ -127,7 +130,8 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
				 *  Rate : ??Mega bps
				 *  ACK frame length = 14 bytes, tx rate = 24M */
				Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION * 3;
				Duration += (((NextBodyLen*8 + 22 + Rate*4 - 1)/(Rate*4)) * Tsym +
				Duration += (((NextBodyLen*8 + 22 + Rate*4 - 1)
					     /(Rate*4)) * Tsym +
					     (((2*14)*8 + 22 + 95)/96)*Tsym +
					    DEFAULT_SIFSTIME*3);
			} else {
@@ -141,7 +145,8 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
				else
					Duration = SHORT_PREAMBLE_PLUS_PLCPHEADER_TIME*3;

				Duration += (((NextBodyLen + (2*14))*8 + Rate-1) / Rate +
				Duration += (((NextBodyLen + (2*14))*8
					     + Rate-1) / Rate +
					    DEFAULT_SIFSTIME*3);
			}

@@ -168,7 +173,8 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
			 * ACK frame length = 14 bytes */
			Duration = PREAMBLE_PLUS_SIGNAL_PLUS_SIGNALEXTENSION;
			/* The Tx rate of ACK use 24M */
			Duration += (((112 + 22 + 95)/96)*Tsym + DEFAULT_SIFSTIME);
			Duration += (((112 + 22 + 95)/96)*Tsym +
				    DEFAULT_SIFSTIME);
		} else {
			/* DSSS
			 * 1 ACK + 1 SIFS
@@ -191,7 +197,8 @@ static void Mds_DurationSet(struct wbsoft_priv *adapter, struct wb35_descriptor
}

/* The function return the 4n size of usb pk */
static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *pDes, u8 *TargetBuffer)
static u16 Mds_BodyCopy(struct wbsoft_priv *adapter,
			struct wb35_descriptor *pDes, u8 *TargetBuffer)
{
	struct T00_descriptor *pT00;
	struct wb35_mds *pMds = &adapter->Mds;
@@ -290,7 +297,8 @@ static u16 Mds_BodyCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *pDe
	return Size;
}

static void Mds_HeaderCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *pDes, u8 *TargetBuffer)
static void Mds_HeaderCopy(struct wbsoft_priv *adapter,
			   struct wb35_descriptor *pDes, u8 *TargetBuffer)
{
	struct wb35_mds *pMds = &adapter->Mds;
	u8	*src_buffer = pDes->buffer_address[0]; /* 931130.5.g */
@@ -395,7 +403,8 @@ static void Mds_HeaderCopy(struct wbsoft_priv *adapter, struct wb35_descriptor *

}

static void MLME_GetNextPacket(struct wbsoft_priv *adapter, struct wb35_descriptor *desc)
static void MLME_GetNextPacket(struct wbsoft_priv *adapter,
			       struct wb35_descriptor *desc)
{
	desc->InternalUsed = desc->buffer_start_index + desc->buffer_number;
	desc->InternalUsed %= MAX_DESCRIPTOR_BUFFER_INDEX;
@@ -423,7 +432,8 @@ static void MLMEfreeMMPDUBuffer(struct wbsoft_priv *adapter, s8 *pData)
	}
}

static void MLME_SendComplete(struct wbsoft_priv *adapter, u8 PacketID, unsigned char SendOK)
static void MLME_SendComplete(struct wbsoft_priv *adapter, u8 PacketID,
			      unsigned char SendOK)
{
    /* Reclaim the data buffer */
	adapter->sMlmeFrame.len = 0;