summaryrefslogtreecommitdiff
path: root/driver/temp_sensor/bd99992gw.h
diff options
context:
space:
mode:
authorGwendal Grignou <gwendal@chromium.org>2019-03-11 15:57:52 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-03-26 04:42:55 -0700
commitbb266fc26fc05d4ab22de6ad7bce5b477c9f9140 (patch)
treef6ada087f62246c3a9547e649ac8846b0ed6d5ab /driver/temp_sensor/bd99992gw.h
parent0bfc511527cf2aebfa163c63a1d028419ca0b0c3 (diff)
downloadchrome-ec-bb266fc26fc05d4ab22de6ad7bce5b477c9f9140.tar.gz
common: replace 1 << digits, with BIT(digits)
Requested for linux integration, use BIT instead of 1 << First step replace bit operation with operand containing only digits. Fix an error in motion_lid try to set bit 31 of a signed integer. BUG=None BRANCH=None TEST=compile Change-Id: Ie843611f2f68e241f0f40d4067f7ade726951d29 Signed-off-by: Gwendal Grignou <gwendal@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1518659 Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org>
Diffstat (limited to 'driver/temp_sensor/bd99992gw.h')
-rw-r--r--driver/temp_sensor/bd99992gw.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/driver/temp_sensor/bd99992gw.h b/driver/temp_sensor/bd99992gw.h
index 27a9943de1..7db3990e07 100644
--- a/driver/temp_sensor/bd99992gw.h
+++ b/driver/temp_sensor/bd99992gw.h
@@ -26,26 +26,26 @@ enum bd99992gw_adc_channel {
/* Registers */
#define BD99992GW_REG_IRQLVL1 0x02
-#define BD99992GW_IRQLVL1_ADC (1 << 1) /* ADC IRQ asserted */
+#define BD99992GW_IRQLVL1_ADC BIT(1) /* ADC IRQ asserted */
#define BD99992GW_REG_ADC1INT 0x03
-#define BD99992GW_ADC1INT_RND (1 << 0) /* RR cycle completed */
+#define BD99992GW_ADC1INT_RND BIT(0) /* RR cycle completed */
#define BD99992GW_REG_MADC1INT 0x0a
-#define BD99992GW_MADC1INT_RND (1 << 0) /* RR cycle mask */
+#define BD99992GW_MADC1INT_RND BIT(0) /* RR cycle mask */
#define BD99992GW_REG_IRQLVL1MSK 0x13
-#define BD99992GW_IRQLVL1MSK_MADC (1 << 1) /* ADC IRQ mask */
+#define BD99992GW_IRQLVL1MSK_MADC BIT(1) /* ADC IRQ mask */
#define BD99992GW_REG_ADC1CNTL1 0x80
#define BD99992GW_ADC1CNTL1_SLP27MS (0x6 << 3) /* 27ms between pass */
#define BD99992GW_ADC1CNTL1_NOLOOP (0x7 << 3) /* Single loop pass only */
-#define BD99992GW_ADC1CNTL1_ADPAUSE (1 << 2) /* ADC pause */
-#define BD99992GW_ADC1CNTL1_ADSTRT (1 << 1) /* ADC start */
-#define BD99992GW_ADC1CNTL1_ADEN (1 << 0) /* ADC enable */
+#define BD99992GW_ADC1CNTL1_ADPAUSE BIT(2) /* ADC pause */
+#define BD99992GW_ADC1CNTL1_ADSTRT BIT(1) /* ADC start */
+#define BD99992GW_ADC1CNTL1_ADEN BIT(0) /* ADC enable */
#define BD99992GW_REG_ADC1CNTL2 0x81
-#define BD99992GW_ADC1CNTL2_ADCTHERM (1 << 0) /* Enable ADC sequencing */
+#define BD99992GW_ADC1CNTL2_ADCTHERM BIT(0) /* Enable ADC sequencing */
/* ADC1 Pointer file regs - assign to proper bd99992gw_adc_channel */
#define BD99992GW_ADC_POINTER_REG_COUNT 8
@@ -57,7 +57,7 @@ enum bd99992gw_adc_channel {
#define BD99992GW_REG_ADC1ADDR5 0x87
#define BD99992GW_REG_ADC1ADDR6 0x88
#define BD99992GW_REG_ADC1ADDR7 0x89
-#define BD99992GW_ADC1ADDR_STOP (1 << 3) /* Last conversion channel */
+#define BD99992GW_ADC1ADDR_STOP BIT(3) /* Last conversion channel */
/* Result registers */
#define BD99992GW_REG_ADC1DATA0L 0x95