1
0
Fork 0

xen-netback: use true and false for boolean values

Return statements in functions returning bool should use true or false
instead of an integer value.

This issue was detected with the help of Coccinelle.

Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
Gustavo A. R. Silva 2018-08-01 19:31:01 -05:00 committed by David S. Miller
parent bd34389d4f
commit d3e2a25bcd
1 changed files with 2 additions and 2 deletions

View File

@ -1603,9 +1603,9 @@ static void xenvif_ctrl_action(struct xenvif *vif)
static bool xenvif_ctrl_work_todo(struct xenvif *vif)
{
if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->ctrl)))
return 1;
return true;
return 0;
return false;
}
irqreturn_t xenvif_ctrl_irq_fn(int irq, void *data)