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

Commit 58493d8e authored by Nik Nyby's avatar Nik Nyby Committed by Greg Kroah-Hartman
Browse files

staging: rtl8192u: fix typo in debug message



This fixes a mis-spelled word in a few debug statements.

Signed-off-by: default avatarNik Nyby <nikolas@gnu.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 46347b3e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -746,7 +746,7 @@ static void RxReorderIndicatePacket(struct ieee80211_device *ieee,

		// Indicate packets
		if(index>REORDER_WIN_SIZE){
			IEEE80211_DEBUG(IEEE80211_DL_ERR, "RxReorderIndicatePacket(): Rx Reorer buffer full!! \n");
			IEEE80211_DEBUG(IEEE80211_DL_ERR, "RxReorderIndicatePacket(): Rx Reorder buffer full!! \n");
			kfree(prxbIndicateArray);
			return;
		}
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ static void RxPktPendingTimeout(unsigned long data)

		// Indicate packets
		if(index > REORDER_WIN_SIZE){
			IEEE80211_DEBUG(IEEE80211_DL_ERR, "RxReorderIndicatePacket(): Rx Reorer buffer full!! \n");
			IEEE80211_DEBUG(IEEE80211_DL_ERR, "RxReorderIndicatePacket(): Rx Reorder buffer full!! \n");
			spin_unlock_irqrestore(&(ieee->reorder_spinlock), flags);
			return;
		}