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: Paul Hedman <paul@mybb.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
09a7a6b5d8
commit
3002b1a601
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue