mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 20:58:14 -04:00
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: Hari Prasath Gujulan Elango <hgujulan@visteon.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
ba8f5e6642
commit
2d33ff126b
@@ -43,8 +43,8 @@
|
||||
********************************************/
|
||||
|
||||
#define HIF_SDIO (0)
|
||||
#define HIF_SPI (1 << 0)
|
||||
#define HIF_SDIO_GPIO_IRQ (1 << 2)
|
||||
#define HIF_SPI BIT(0)
|
||||
#define HIF_SDIO_GPIO_IRQ BIT(2)
|
||||
|
||||
|
||||
/********************************************
|
||||
|
||||
Reference in New Issue
Block a user