Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1a834b96 authored by Greg Donald's avatar Greg Donald Committed by Greg Kroah-Hartman
Browse files

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: default avatarGreg Donald <gdonald@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c802a644
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)