diff options
author | Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com> | 2014-08-15 14:22:09 +0530 |
---|---|---|
committer | Jeremy Kerr <jeremy.kerr@au.ibm.com> | 2014-08-18 11:28:45 +0800 |
commit | 78b62fea12f1b9b6237560b35b904a962f0231bf (patch) | |
tree | 42724c439cf5c7f13b23f25d430b63b4a8c1a091 | |
parent | f9ac71909abdc1ccd83dfd46a5c659191b38409f (diff) | |
download | talos-skiboot-78b62fea12f1b9b6237560b35b904a962f0231bf.tar.gz talos-skiboot-78b62fea12f1b9b6237560b35b904a962f0231bf.zip |
slw: Parse DT from host-boot for fast-sleep string
Match the fast-sleep name between OPAL and HB
Signed-off-by: Vaidyanathan Srinivasan <svaidy@linux.vnet.ibm.com>
Signed-off-by: Jeremy Kerr <jeremy.kerr@au.ibm.com>
-rw-r--r-- | hw/slw.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -555,7 +555,7 @@ void add_cpu_idle_state_properties(void) nr_states = ARRAY_SIZE(power8_cpu_idle_states); /* Check if hostboot say we can sleep */ - if (!p || !dt_prop_find_string(p, "fastsleep")) { + if (!p || !dt_prop_find_string(p, "fast-sleep")) { printf("SLW: Sleep not enabled by HB on this platform\n"); can_sleep = false; } |