summaryrefslogtreecommitdiff
path: root/chip/lm4/fan.c
diff options
context:
space:
mode:
Diffstat (limited to 'chip/lm4/fan.c')
-rw-r--r--chip/lm4/fan.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/chip/lm4/fan.c b/chip/lm4/fan.c
index 39baa0a03e..c0eee330db 100644
--- a/chip/lm4/fan.c
+++ b/chip/lm4/fan.c
@@ -32,14 +32,14 @@
void fan_set_enabled(int ch, int enabled)
{
if (enabled)
- LM4_FAN_FANCTL |= (1 << ch);
+ LM4_FAN_FANCTL |= BIT(ch);
else
- LM4_FAN_FANCTL &= ~(1 << ch);
+ LM4_FAN_FANCTL &= ~BIT(ch);
}
int fan_get_enabled(int ch)
{
- return (LM4_FAN_FANCTL & (1 << ch)) ? 1 : 0;
+ return (LM4_FAN_FANCTL & BIT(ch)) ? 1 : 0;
}
void fan_set_duty(int ch, int percent)