From aeb366970e0c48871dd2d880665c0d64961a524f Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Tue, 18 Sep 2018 04:54:12 -0500 Subject: Actually add /ibm,opal/fast-reboot property I missed a hunk when merging :( Reported-by: Vasant Hegde Fixes: 7c8e1c6f89f3aac77661cfcee75ab515bd053d75 Signed-off-by: Stewart Smith --- core/fast-reboot.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'core') diff --git a/core/fast-reboot.c b/core/fast-reboot.c index 56d6b3b..becca7d 100644 --- a/core/fast-reboot.c +++ b/core/fast-reboot.c @@ -72,6 +72,17 @@ void disable_fast_reboot(const char *reason) fast_reboot_disabled = reason; } +void add_fast_reboot_dt_entries(void) +{ + dt_check_del_prop(opal_node, "fast-reboot"); + + if (fast_reboot_disabled) { + dt_add_property_string(opal_node, "fast-reboot", fast_reboot_disabled); + } else { + dt_add_property_string(opal_node, "fast-reboot", "okay"); + } +} + /* * This is called by the reboot CPU after all other CPUs have been * quiesced and stopped, to perform various sanity checks on firmware -- cgit v1.1