diff options
author | Paul Cercueil <paul@crapouillou.net> | 2018-12-16 09:10:44 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-01-03 03:32:42 -0500 |
commit | ddf5aaa8eecb6ccf51f311a513c3a5011fbe0d54 (patch) | |
tree | 793b436da77bc9afa425175fb412eda1c7d3b230 | |
parent | 75d4c5e03c2ae9902ab521024b10291f6fc9515b (diff) |
mfd: ingenic-tcu: Fix bit field description in header
The description of the bit was inverted.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | include/linux/mfd/ingenic-tcu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mfd/ingenic-tcu.h b/include/linux/mfd/ingenic-tcu.h index ab16ad283def..2083fa20821d 100644 --- a/include/linux/mfd/ingenic-tcu.h +++ b/include/linux/mfd/ingenic-tcu.h | |||
@@ -41,7 +41,7 @@ | |||
41 | #define TCU_TCSR_PRESCALE_LSB 3 | 41 | #define TCU_TCSR_PRESCALE_LSB 3 |
42 | #define TCU_TCSR_PRESCALE_MASK 0x38 | 42 | #define TCU_TCSR_PRESCALE_MASK 0x38 |
43 | 43 | ||
44 | #define TCU_TCSR_PWM_SD BIT(9) /* 0: Shutdown abruptly 1: gracefully */ | 44 | #define TCU_TCSR_PWM_SD BIT(9) /* 0: Shutdown gracefully 1: abruptly */ |
45 | #define TCU_TCSR_PWM_INITL_HIGH BIT(8) /* Sets the initial output level */ | 45 | #define TCU_TCSR_PWM_INITL_HIGH BIT(8) /* Sets the initial output level */ |
46 | #define TCU_TCSR_PWM_EN BIT(7) /* PWM pin output enable */ | 46 | #define TCU_TCSR_PWM_EN BIT(7) /* PWM pin output enable */ |
47 | 47 | ||