Commit 5bb5572a authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman

staging: ath6kl: Convert A_NETBUF_QUEUE_EMPTY to return TRUE or FALSE

Make the return an A_BOOL not int.
Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarVipin Mehta <vipin.mehta@atheros.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ebb8e490
...@@ -247,7 +247,7 @@ typedef struct sk_buff_head A_NETBUF_QUEUE_T; ...@@ -247,7 +247,7 @@ typedef struct sk_buff_head A_NETBUF_QUEUE_T;
#define A_NETBUF_QUEUE_SIZE(q) \ #define A_NETBUF_QUEUE_SIZE(q) \
a_netbuf_queue_size(q) a_netbuf_queue_size(q)
#define A_NETBUF_QUEUE_EMPTY(q) \ #define A_NETBUF_QUEUE_EMPTY(q) \
a_netbuf_queue_empty(q) (a_netbuf_queue_empty(q) ? TRUE : FALSE)
/* /*
* Network buffer support * Network buffer support
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment