From: Greg Donald Date: Mon, 1 Sep 2014 00:46:19 +0000 (-0500) Subject: drivers: staging: rtl8723au: Fix return is not a function, parentheses are not requir... X-Git-Tag: v3.18-rc1~130^2~849 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=1a834b96e20162d00df472bf87104b93b7338172;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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)