[PATCH v4 01/12] can: slcan: use the BIT() helper

From: Dario Binacchi
Date: Tue Jun 14 2022 - 08:30:03 EST


Use the BIT() helper instead of an explicit shift.

Signed-off-by: Dario Binacchi <dario.binacchi@xxxxxxxxxxxxxxxxxxxx>
---

(no changes since v1)

drivers/net/can/slcan.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/can/slcan.c b/drivers/net/can/slcan.c
index 64a3aee8a7da..b37d35c2a23a 100644
--- a/drivers/net/can/slcan.c
+++ b/drivers/net/can/slcan.c
@@ -413,7 +413,7 @@ static int slc_open(struct net_device *dev)
if (sl->tty == NULL)
return -ENODEV;

- sl->flags &= (1 << SLF_INUSE);
+ sl->flags &= BIT(SLF_INUSE);
netif_start_queue(dev);
return 0;
}
--
2.32.0