summaryrefslogtreecommitdiff
path: root/drivers/char/ipmi
diff options
context:
space:
mode:
authorCorey Minyard <cminyard@mvista.com>2022-11-03 23:03:11 +0300
committerCorey Minyard <cminyard@mvista.com>2022-11-04 05:13:51 +0300
commit39721d62bbc16ebc9bb2bdc2c163658f33da3b0b (patch)
tree8981c11b2c8c2bc929fa487632c963bce4cc07ba /drivers/char/ipmi
parentcad3fe56d03e25d9d929b85aa05f208766f4c80d (diff)
downloadlinux-39721d62bbc16ebc9bb2bdc2c163658f33da3b0b.tar.xz
ipmi:ssif: Increase the message retry time
The spec states that the minimum message retry time is 60ms, but it was set to 20ms. Correct it. Reported by: Tony Camuso <tcamuso@redhat.com> Signed-off-by: Corey Minyard <cminyard@mvista.com>
Diffstat (limited to 'drivers/char/ipmi')
-rw-r--r--drivers/char/ipmi/ipmi_ssif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/ipmi/ipmi_ssif.c b/drivers/char/ipmi/ipmi_ssif.c
index e1072809fe31..4bfd1e306616 100644
--- a/drivers/char/ipmi/ipmi_ssif.c
+++ b/drivers/char/ipmi/ipmi_ssif.c
@@ -74,7 +74,7 @@
/*
* Timer values
*/
-#define SSIF_MSG_USEC 20000 /* 20ms between message tries. */
+#define SSIF_MSG_USEC 60000 /* 60ms between message tries. */
#define SSIF_MSG_PART_USEC 5000 /* 5ms for a message part */
/* How many times to we retry sending/receiving the message. */