summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/debug_menu.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index a46c169844..bc272e2a85 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1407,9 +1407,12 @@ static int disk_callback(int btn, struct gui_synclist *lists)
"Free: %ld MB", free / 1024);
simplelist_addline(
"Spinup time: %d ms", storage_spinup_time() * (1000/HZ));
- i = identify_info[83] & (1<<3);
+ i = identify_info[82] & (1<<3);
simplelist_addline(
"Power mgmt: %s", i ? "enabled" : "unsupported");
+ i = identify_info[83] & (1<<3);
+ simplelist_addline(
+ "Adv Power mgmt: %s", i ? "enabled" : "unsupported");
i = identify_info[83] & (1<<9);
simplelist_addline(
"Noise mgmt: %s", i ? "enabled" : "unsupported");