Commit 72369b1b authored by Vatsala Narang's avatar Vatsala Narang Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: core: Remove unnecessary parentheses



Remove unnecessary parentheses after 'address-of' operator
Issue found with checkpatch.pl

Signed-off-by: default avatarVatsala Narang <vatsalanarang@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0049363c
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -64,10 +64,10 @@ int _rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *padapter)
	precvframe = PTR_ALIGN(precvpriv->pallocated_frame_buf, RXFRAME_ALIGN_SZ);

	for (i = 0; i < NR_RECVFRAME; i++) {
		INIT_LIST_HEAD(&(precvframe->list));
		INIT_LIST_HEAD(&precvframe->list);

		list_add_tail(&(precvframe->list),
				     &(precvpriv->free_recv_queue.queue));
		list_add_tail(&precvframe->list,
				     &precvpriv->free_recv_queue.queue);

		precvframe->pkt = NULL;

@@ -134,9 +134,9 @@ int rtw_free_recvframe(struct recv_frame *precvframe,

	spin_lock_bh(&pfree_recv_queue->lock);

	list_del_init(&(precvframe->list));
	list_del_init(&precvframe->list);

	list_add_tail(&(precvframe->list), get_list_head(pfree_recv_queue));
	list_add_tail(&precvframe->list, get_list_head(pfree_recv_queue));

	spin_unlock_bh(&pfree_recv_queue->lock);