diff options
author | David Lin <dtwlin@google.com> | 2017-09-13 10:53:58 -0700 |
---|---|---|
committer | Jacek Anaszewski <jacek.anaszewski@gmail.com> | 2017-10-06 21:31:03 +0200 |
commit | 55edd1dad96b760c87f5b9e2c461ba551a625f44 (patch) | |
tree | b0910e0204a3698616bcb53a18f2f4226afd5cfe | |
parent | 52ca7d0f7bdad832b291ed979146443533ee79c0 (diff) | |
download | op-kernel-dev-55edd1dad96b760c87f5b9e2c461ba551a625f44.zip op-kernel-dev-55edd1dad96b760c87f5b9e2c461ba551a625f44.tar.gz |
leds: Replace flags bit shift with BIT() macros
This is for readability as well as to avoid checkpatch warnings when
adding new bit flag information in the future.
Signed-off-by: David Lin <dtwlin@google.com>
Signed-off-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
-rw-r--r-- | include/linux/leds.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/linux/leds.h b/include/linux/leds.h index bf6db4f..5579c64 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h @@ -40,16 +40,16 @@ struct led_classdev { int flags; /* Lower 16 bits reflect status */ -#define LED_SUSPENDED (1 << 0) -#define LED_UNREGISTERING (1 << 1) +#define LED_SUSPENDED BIT(0) +#define LED_UNREGISTERING BIT(1) /* Upper 16 bits reflect control information */ -#define LED_CORE_SUSPENDRESUME (1 << 16) -#define LED_SYSFS_DISABLE (1 << 17) -#define LED_DEV_CAP_FLASH (1 << 18) -#define LED_HW_PLUGGABLE (1 << 19) -#define LED_PANIC_INDICATOR (1 << 20) -#define LED_BRIGHT_HW_CHANGED (1 << 21) -#define LED_RETAIN_AT_SHUTDOWN (1 << 22) +#define LED_CORE_SUSPENDRESUME BIT(16) +#define LED_SYSFS_DISABLE BIT(17) +#define LED_DEV_CAP_FLASH BIT(18) +#define LED_HW_PLUGGABLE BIT(19) +#define LED_PANIC_INDICATOR BIT(20) +#define LED_BRIGHT_HW_CHANGED BIT(21) +#define LED_RETAIN_AT_SHUTDOWN BIT(22) /* set_brightness_work / blink_timer flags, atomic, private. */ unsigned long work_flags; |