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

Commit 06aea994 authored by Sebastian Dalfuß's avatar Sebastian Dalfuß Committed by Greg Kroah-Hartman
Browse files

Staging: rt2860: reduce superfluous exclamation marks



This removes superfluous exclamation marks from strings and comments, and
also three spelling typos.

Signed-off-by: default avatarSebastian Dalfuß <sd@sedf.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 956cd45d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1481,7 +1481,7 @@ static void ba_enqueue_reordering_packet(struct rt_rtmp_adapter *pAd,
		NdisReleaseSpinLock(&pBAEntry->RxReRingLock);
	} else {
		DBGPRINT(RT_DEBUG_ERROR,
			 ("!!! (%d) Can't allocate reordering mpdu blk\n",
			 (" (%d) Can't allocate reordering mpdu blk\n",
			  pBAEntry->list.qlen));

		/*
@@ -1542,7 +1542,7 @@ void Indicate_AMPDU_Packet(struct rt_rtmp_adapter *pAd,
		}
		pBAEntry = &pAd->BATable.BARecEntry[Idx];
	} else {
		/* impossible !!! */
		/* impossible ! */
		ASSERT(0);
		/* release packet */
		RELEASE_NDIS_PACKET(pAd, pRxBlk->pRxPacket,
+1 −1
Original line number Diff line number Diff line
@@ -1279,7 +1279,7 @@ void AES_GTK_KEY_UNWRAP(u8 * key,

	if (R == NULL) {
		DBGPRINT(RT_DEBUG_ERROR,
			 ("!!!AES_GTK_KEY_UNWRAP: no memory!!!\n"));
			 ("AES_GTK_KEY_UNWRAP: no memory!\n"));
		return;
	}
	/* End of if */
+1 −1
Original line number Diff line number Diff line
@@ -1005,7 +1005,7 @@ void AsicSwitchChannel(struct rt_rtmp_adapter *pAd, u8 Channel, IN BOOLEAN bScan
void AsicResetBBPAgent(struct rt_rtmp_adapter *pAd)
{
	BBP_CSR_CFG_STRUC BbpCsr;
	DBGPRINT(RT_DEBUG_ERROR, ("Reset BBP Agent busy bit.!! \n"));
	DBGPRINT(RT_DEBUG_ERROR, ("Reset BBP Agent busy bit!\n"));
	/* Still need to find why BBP agent keeps busy, but in fact, hardware still function ok. Now clear busy first. */
	RTMP_IO_READ32(pAd, H2M_BBP_AGENT, &BbpCsr.word);
	BbpCsr.field.Busy = 0;
+4 −4
Original line number Diff line number Diff line
@@ -397,7 +397,7 @@ int MlmeHardTransmitMgmtRing(struct rt_rtmp_adapter *pAd,
	    && (pAd->CommonCfg.bIEEE80211H == 1)
	    && (pAd->CommonCfg.RadarDetect.RDMode != RD_NORMAL_MODE)) {
		DBGPRINT(RT_DEBUG_ERROR,
			 ("MlmeHardTransmit --> radar detect not in normal mode !!!\n"));
			 ("MlmeHardTransmit --> radar detect not in normal mode!\n"));
/*              if (!IrqState) */
		RTMP_SEM_UNLOCK(&pAd->MgmtRingLock);
		return (NDIS_STATUS_FAILURE);
@@ -964,7 +964,7 @@ u16 RTMPCalcDuration(struct rt_rtmp_adapter *pAd, u8 Rate, unsigned long Size)
	IRQL = PASSIVE_LEVEL
	IRQL = DISPATCH_LEVEL

    See also : BASmartHardTransmit()    !!!
    See also : BASmartHardTransmit()    !

	========================================================================
*/
@@ -1708,7 +1708,7 @@ BOOLEAN MacTableDeleteEntry(struct rt_rtmp_adapter *pAd,
				pProbeEntry = pProbeEntry->pNext;
			} while (pProbeEntry);

			/* not found !!! */
			/* not found ! */
			ASSERT(pProbeEntry != NULL);

			RTMP_STA_ENTRY_KEY_DEL(pAd, BSS0, wcid);
@@ -1729,7 +1729,7 @@ BOOLEAN MacTableDeleteEntry(struct rt_rtmp_adapter *pAd,
				  pAd->MacTab.Size));
		} else {
			DBGPRINT(RT_DEBUG_OFF,
				 ("\n%s: Impossible Wcid = %d !!!!!\n",
				 ("\n%s: Impossible Wcid = %d !\n",
				  __func__, wcid));
		}
	}
+1 −1
Original line number Diff line number Diff line
@@ -847,7 +847,7 @@ VOID RT28xxPciStaAsicForceWakeup(
		AutoWakeupCfg.word = 0;
		RTMP_IO_WRITE32(pAd, AUTO_WAKEUP_CFG, AutoWakeupCfg.word);

		// If this is called from Halt. ALWAYS force wakeup!!!
		// If this is called from Halt. ALWAYS force wakeup!
		if (Level == RTMP_HALT)
		{
			RT28xxPciAsicRadioOn(pAd, RTMP_HALT);
Loading