staging: ath6kl: Convert A_NETBUF_QUEUE_EMPTY to return TRUE or FALSE
Make the return an A_BOOL not int. Signed-off-by: Joe Perches <joe@perches.com> Acked-by: Vipin Mehta <vipin.mehta@atheros.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ebb8e49098
commit
5bb5572ab6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue