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>
This commit is contained in:
Greg Donald 2014-08-31 19:46:19 -05:00 committed by Greg Kroah-Hartman
parent c802a6447d
commit 1a834b96e2
1 changed files with 1 additions and 1 deletions

View File

@ -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)