mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-03 17:51:57 +09:00
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:
committed by
Greg Kroah-Hartman
parent
c802a6447d
commit
1a834b96e2
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user