Message ID | 1571349205-11067-13-git-send-email-debmc@linux.ibm.com |
---|---|
State | Superseded |
Headers | show |
Series | ipmi-hiomap: Enablement for Async opal_flash_op's | expand |
Context | Check | Description |
---|---|---|
snowpatch_ozlabs/apply_patch | success | Successfully applied on branch master (d75e82dbfbb9443efeb3f9a5921ac23605aab469) |
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot | fail | Test snowpatch/job/snowpatch-skiboot on branch master |
snowpatch_ozlabs/snowpatch_job_snowpatch-skiboot-dco | success | Signed-off-by present |
diff --git a/core/timer.c b/core/timer.c index 53b6616..ea84e82 100644 --- a/core/timer.c +++ b/core/timer.c @@ -296,7 +296,7 @@ void late_init_timers(void) if (platform.heartbeat_time) { heartbeat = platform.heartbeat_time(); } else if (p9_sbe_timer_ok()) { - heartbeat = HEARTBEAT_DEFAULT_MS * 10; + heartbeat = HEARTBEAT_DEFAULT_MS; } else if (p8_sbe_timer_ok()) { heartbeat = HEARTBEAT_DEFAULT_MS * 10; }
During ipmi async flows we need the ipmi messages regularly delivered. Signed-off-by: Deb McLemore <debmc@linux.ibm.com> --- core/timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)