diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-11-14 15:52:29 +1100 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2014-11-14 16:07:26 +1100 |
commit | f70a248f0bf8a77c988d5ba64a1b3cbd11ef3de7 (patch) | |
tree | ff7d8b871f4799a6b1fbe99cce97bc3a315a349e /core | |
parent | 306639e92058678aab28b620f9e256cd56da4291 (diff) | |
download | blackbird-skiboot-f70a248f0bf8a77c988d5ba64a1b3cbd11ef3de7.tar.gz blackbird-skiboot-f70a248f0bf8a77c988d5ba64a1b3cbd11ef3de7.zip |
timer: Change property name "ibm,heartbeat-freq" -> "ibm,heartbeat-ms"
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/timer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/timer.c b/core/timer.c index 40526eea..737fb780 100644 --- a/core/timer.c +++ b/core/timer.c @@ -238,8 +238,8 @@ void late_init_timers(void) * faster than that. */ if (fsp_present()) - dt_add_property_cells(opal_node, "ibm,heartbeat-freq", 2000); + dt_add_property_cells(opal_node, "ibm,heartbeat-ms", 2000); else - dt_add_property_cells(opal_node, "ibm,heartbeat-freq", 250); + dt_add_property_cells(opal_node, "ibm,heartbeat-ms", 250); } #endif |