Commit 3002b1a6 authored by Paul Hedman's avatar Paul Hedman Committed by Greg Kroah-Hartman
Browse files

Staging: rtl8712: Fixes brace coding style in rtl871x_sta_mgt.c



This patch fixes a brace warning in rtl871x_sta_mgt.c found
by the checkpatch.pl tool.

Signed-off-by: default avatarPaul Hedman <paul@mybb.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 09a7a6b5
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -83,9 +83,8 @@ static void mfree_all_stainfo(struct sta_priv *pstapriv)
	spin_lock_irqsave(&pstapriv->sta_hash_lock, irqL);
	phead = &pstapriv->free_sta_queue.queue;
	plist = phead->next;
	while ((end_of_queue_search(phead, plist)) == false) {
	while ((end_of_queue_search(phead, plist)) == false)
		plist = plist->next;
	}

	spin_unlock_irqrestore(&pstapriv->sta_hash_lock, irqL);
}