staging: rtl8188eu: os_dep: remove unnecessary parentheses

Remove parentheses in _rtw_init_queue to fix checkpatch warning

Signed-off-by: Pierre-Yves Kerbrat <pkerbrat@free.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Pierre-Yves Kerbrat 2016-10-19 20:49:52 +02:00 committed by Greg Kroah-Hartman
parent 3ddaf64835
commit 1050394cd7

View file

@ -54,10 +54,10 @@ void *rtw_malloc2d(int h, int w, int size)
return a;
}
void _rtw_init_queue(struct __queue *pqueue)
void _rtw_init_queue(struct __queue *pqueue)
{
INIT_LIST_HEAD(&(pqueue->queue));
spin_lock_init(&(pqueue->lock));
INIT_LIST_HEAD(&pqueue->queue);
spin_lock_init(&pqueue->lock);
}
struct net_device *rtw_alloc_etherdev_with_old_priv(void *old_priv)