projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
39738eb
)
hwmon: (pmbus/ibm-cffps) Fix write bits for LED control
author
Brandon Wyman
<bjwyman@gmail.com>
Fri, 6 Aug 2021 22:51:31 +0000
(22:51 +0000)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Sat, 18 Sep 2021 11:40:29 +0000
(13:40 +0200)
[ Upstream commit
76b72736f574ec38b3e94603ea5f74b1853f26b0
]
When doing a PMBus write for the LED control on the IBM Common Form
Factor Power Supplies (ibm-cffps), the DAh command requires that bit 7
be low and bit 6 be high in order to indicate that you are truly
attempting to do a write.
Signed-off-by: Brandon Wyman <bjwyman@gmail.com>
Link:
https://lore.kernel.org/r/20210806225131.1808759-1-bjwyman@gmail.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/hwmon/pmbus/ibm-cffps.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/pmbus/ibm-cffps.c
b/drivers/hwmon/pmbus/ibm-cffps.c
index 2fb7540ee952b5984c1bc558cb99de4a12eb6a67..79bc2032dcb2a635c38a83e2ebed75dd49809417 100644
(file)
--- a/
drivers/hwmon/pmbus/ibm-cffps.c
+++ b/
drivers/hwmon/pmbus/ibm-cffps.c
@@
-50,9
+50,9
@@
#define CFFPS_MFR_VAUX_FAULT BIT(6)
#define CFFPS_MFR_CURRENT_SHARE_WARNING BIT(7)
-#define CFFPS_LED_BLINK
BIT(0
)
-#define CFFPS_LED_ON
BIT(1
)
-#define CFFPS_LED_OFF
BIT(2
)
+#define CFFPS_LED_BLINK
(BIT(0) | BIT(6)
)
+#define CFFPS_LED_ON
(BIT(1) | BIT(6)
)
+#define CFFPS_LED_OFF
(BIT(2) | BIT(6)
)
#define CFFPS_BLINK_RATE_MS 250
enum {