aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723au
diff options
context:
space:
mode:
authorGreg Donald <gdonald@gmail.com>2014-08-31 19:46:19 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-02 10:48:32 -0700
commit1a834b96e20162d00df472bf87104b93b7338172 (patch)
treed2a8bae9924e024670388c781057e9ce1171e33c /drivers/staging/rtl8723au
parentdrivers: staging: ft1000: Fix return is not a function, parentheses are not required errors (diff)
downloadlinux-dev-1a834b96e20162d00df472bf87104b93b7338172.tar.xz
linux-dev-1a834b96e20162d00df472bf87104b93b7338172.zip
drivers: staging: rtl8723au: Fix return is not a function, parentheses are not required error
Fix checkpatch.pl return is not a function, parentheses are not required error Signed-off-by: Greg Donald <gdonald@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723au')
-rw-r--r--drivers/staging/rtl8723au/include/osdep_service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723au/include/osdep_service.h b/drivers/staging/rtl8723au/include/osdep_service.h
index 51a5d7b8ac11..dedb41874de5 100644
--- a/drivers/staging/rtl8723au/include/osdep_service.h
+++ b/drivers/staging/rtl8723au/include/osdep_service.h
@@ -54,7 +54,7 @@ struct rtw_queue {
static inline struct list_head *get_list_head(struct rtw_queue *queue)
{
- return (&queue->queue);
+ return &queue->queue;
}
static inline int rtw_netif_queue_stopped(struct net_device *pnetdev)