Commit 2d33ff12 authored by Hari Prasath Gujulan Elango's avatar Hari Prasath Gujulan Elango Committed by Greg Kroah-Hartman

staging: wilc1000: use BIT macro

This patch addresses the checkpatch warning advising the usage of the
BIT macro for Bit shift operation.
Signed-off-by: default avatarHari Prasath Gujulan Elango <hgujulan@visteon.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ba8f5e66
...@@ -43,8 +43,8 @@ ...@@ -43,8 +43,8 @@
********************************************/ ********************************************/
#define HIF_SDIO (0) #define HIF_SDIO (0)
#define HIF_SPI (1 << 0) #define HIF_SPI BIT(0)
#define HIF_SDIO_GPIO_IRQ (1 << 2) #define HIF_SDIO_GPIO_IRQ BIT(2)
/******************************************** /********************************************
......
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