summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8188eu/os_dep
diff options
context:
space:
mode:
authorPierre-Yves Kerbrat2016-10-19 20:49:52 +0200
committerGreg Kroah-Hartman2016-10-25 10:57:12 +0200
commit1050394cd7f0223adfb8ae6faf11a30bd0b7b5f3 (patch)
tree04dae73c67c9366b42ba79073d89d05992b563c4 /drivers/staging/rtl8188eu/os_dep
parentstaging: rtl8188eu: os_dep: fix missing spaces around operators (diff)
downloadkernel-qcow2-linux-1050394cd7f0223adfb8ae6faf11a30bd0b7b5f3.tar.gz
kernel-qcow2-linux-1050394cd7f0223adfb8ae6faf11a30bd0b7b5f3.tar.xz
kernel-qcow2-linux-1050394cd7f0223adfb8ae6faf11a30bd0b7b5f3.zip
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>
Diffstat (limited to 'drivers/staging/rtl8188eu/os_dep')
-rw-r--r--drivers/staging/rtl8188eu/os_dep/osdep_service.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/rtl8188eu/os_dep/osdep_service.c b/drivers/staging/rtl8188eu/os_dep/osdep_service.c
index df5f44000cf0..c036fe7d1df8 100644
--- a/drivers/staging/rtl8188eu/os_dep/osdep_service.c
+++ b/drivers/staging/rtl8188eu/os_dep/osdep_service.c
@@ -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)