From patchwork Tue Jan 8 11:29:57 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: acpi: method: Show the name of the _PSS control Date: Tue, 08 Jan 2013 01:29:57 -0000 From: Colin King X-Patchwork-Id: 210345 Message-Id: <1357644597-10185-1-git-send-email-colin.king@canonical.com> To: fwts-devel@lists.ubuntu.com From: Colin Ian King Output the name of the _PSS control that is being dumped. Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- src/acpi/method/method.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c index 231b5fb..2d6c0d8 100644 --- a/src/acpi/method/method.c +++ b/src/acpi/method/method.c @@ -2481,6 +2481,7 @@ static void method_test_PSS_return( * If we have some valid data then dump it out, it is useful to see */ if (dump_elements) { + fwts_log_info_verbatum(fw, "%s values:", name); fwts_log_info_verbatum(fw, "P-State Freq Power Latency Bus Master"); fwts_log_info_verbatum(fw, " (MHz) (mW) (us) Latency (us)"); for (i = 0; i < obj->Package.Count; i++) {