Skip to content

Commit

Permalink
net: caif: use true,false for bool variables
Browse files Browse the repository at this point in the history
Fix the following coccicheck warning:

net/caif/caif_dev.c:410:2-13: WARNING: Assignment of 0/1 to bool
variable
net/caif/caif_dev.c:445:2-13: WARNING: Assignment of 0/1 to bool
variable
net/caif/caif_dev.c:145:1-12: WARNING: Assignment of 0/1 to bool
variable
net/caif/caif_dev.c:223:1-12: WARNING: Assignment of 0/1 to bool
variable

Signed-off-by: Jason Yan <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
JasonYanHw authored and davem330 committed Apr 23, 2020
1 parent c89f44f commit 8518307
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/caif/caif_dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ static void caif_flow_cb(struct sk_buff *skb)

spin_lock_bh(&caifd->flow_lock);
send_xoff = caifd->xoff;
caifd->xoff = 0;
caifd->xoff = false;
dtor = caifd->xoff_skb_dtor;

if (WARN_ON(caifd->xoff_skb != skb))
Expand Down Expand Up @@ -220,7 +220,7 @@ static int transmit(struct cflayer *layer, struct cfpkt *pkt)
pr_debug("queue has stopped(%d) or is full (%d > %d)\n",
netif_queue_stopped(caifd->netdev),
qlen, high);
caifd->xoff = 1;
caifd->xoff = true;
caifd->xoff_skb = skb;
caifd->xoff_skb_dtor = skb->destructor;
skb->destructor = caif_flow_cb;
Expand Down Expand Up @@ -407,7 +407,7 @@ static int caif_device_notify(struct notifier_block *me, unsigned long what,
break;
}

caifd->xoff = 0;
caifd->xoff = false;
cfcnfg_set_phy_state(cfg, &caifd->layer, true);
rcu_read_unlock();

Expand Down Expand Up @@ -442,7 +442,7 @@ static int caif_device_notify(struct notifier_block *me, unsigned long what,
if (caifd->xoff_skb_dtor != NULL && caifd->xoff_skb != NULL)
caifd->xoff_skb->destructor = caifd->xoff_skb_dtor;

caifd->xoff = 0;
caifd->xoff = false;
caifd->xoff_skb_dtor = NULL;
caifd->xoff_skb = NULL;

Expand Down

0 comments on commit 8518307

Please sign in to comment.