diff mbox

[1/3] acpi: method: add _TSN test

Message ID 1442823819-15419-2-git-send-email-alex.hung@canonical.com
State Accepted
Headers show

Commit Message

Alex Hung Sept. 21, 2015, 8:23 a.m. UTC
Signed-off-by: Alex Hung <alex.hung@canonical.com>
---
 src/acpi/method/method.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

Comments

Colin Ian King Sept. 21, 2015, 9:27 a.m. UTC | #1
On 21/09/15 09:23, Alex Hung wrote:
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>  src/acpi/method/method.c | 9 ++++++++-
>  1 file changed, 8 insertions(+), 1 deletion(-)
> 
> diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
> index 8172336..8b470ce 100644
> --- a/src/acpi/method/method.c
> +++ b/src/acpi/method/method.c
> @@ -237,7 +237,7 @@
>   * _TPT  11.4.15	Y
>   * _TRT  11.4.16	Y
>   * _TSD  8.4.3.4	Y
> - * _TSN  11.4.20	N
> + * _TSN  11.4.20	Y
>   * _TSP  11.4.17	Y
>   * _TSS  8.4.3.2	Y
>   * _TST  11.4.18	Y
> @@ -5625,6 +5625,12 @@ static int method_test_TRT(fwts_framework *fw)
>  		"_TRT", NULL, 0, method_test_TRT_return, "_TRT");
>  }
>  
> +static int method_test_TSN(fwts_framework *fw)
> +{
> +	return method_evaluate_method(fw, METHOD_OPTIONAL,
> +		"_TSN", NULL, 0, method_test_reference_return, "_TSN");
> +}
> +
>  static int method_test_TSP(fwts_framework *fw)
>  {
>  	return method_evaluate_method(fw, METHOD_OPTIONAL,
> @@ -6632,6 +6638,7 @@ static fwts_framework_minor_test method_tests[] = {
>  	{ method_test_TMP, "Test _TMP (Thermal Zone Current Temp)." },
>  	{ method_test_TPT, "Test _TPT (Trip Point Temperature)." },
>  	{ method_test_TRT, "Test _TRT (Thermal Relationship Table)." },
> +	{ method_test_TSN, "Test _TSN (Thermal Sensor Device)." },
>  	{ method_test_TSP, "Test _TSP (Thermal Sampling Period)." },
>  	{ method_test_TST, "Test _TST (Temperature Sensor Threshold)." },
>  	{ method_test_TZD, "Test _TZD (Thermal Zone Devices)." },
> 
Acked-by: Colin Ian King <colin.king@canonical.com>
Ivan Hu Sept. 22, 2015, 3:02 a.m. UTC | #2
On 2015年09月21日 16:23, Alex Hung wrote:
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>   src/acpi/method/method.c | 9 ++++++++-
>   1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
> index 8172336..8b470ce 100644
> --- a/src/acpi/method/method.c
> +++ b/src/acpi/method/method.c
> @@ -237,7 +237,7 @@
>    * _TPT  11.4.15	Y
>    * _TRT  11.4.16	Y
>    * _TSD  8.4.3.4	Y
> - * _TSN  11.4.20	N
> + * _TSN  11.4.20	Y
>    * _TSP  11.4.17	Y
>    * _TSS  8.4.3.2	Y
>    * _TST  11.4.18	Y
> @@ -5625,6 +5625,12 @@ static int method_test_TRT(fwts_framework *fw)
>   		"_TRT", NULL, 0, method_test_TRT_return, "_TRT");
>   }
>
> +static int method_test_TSN(fwts_framework *fw)
> +{
> +	return method_evaluate_method(fw, METHOD_OPTIONAL,
> +		"_TSN", NULL, 0, method_test_reference_return, "_TSN");
> +}
> +
>   static int method_test_TSP(fwts_framework *fw)
>   {
>   	return method_evaluate_method(fw, METHOD_OPTIONAL,
> @@ -6632,6 +6638,7 @@ static fwts_framework_minor_test method_tests[] = {
>   	{ method_test_TMP, "Test _TMP (Thermal Zone Current Temp)." },
>   	{ method_test_TPT, "Test _TPT (Trip Point Temperature)." },
>   	{ method_test_TRT, "Test _TRT (Thermal Relationship Table)." },
> +	{ method_test_TSN, "Test _TSN (Thermal Sensor Device)." },
>   	{ method_test_TSP, "Test _TSP (Thermal Sampling Period)." },
>   	{ method_test_TST, "Test _TST (Temperature Sensor Threshold)." },
>   	{ method_test_TZD, "Test _TZD (Thermal Zone Devices)." },
>


Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff mbox

Patch

diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
index 8172336..8b470ce 100644
--- a/src/acpi/method/method.c
+++ b/src/acpi/method/method.c
@@ -237,7 +237,7 @@ 
  * _TPT  11.4.15	Y
  * _TRT  11.4.16	Y
  * _TSD  8.4.3.4	Y
- * _TSN  11.4.20	N
+ * _TSN  11.4.20	Y
  * _TSP  11.4.17	Y
  * _TSS  8.4.3.2	Y
  * _TST  11.4.18	Y
@@ -5625,6 +5625,12 @@  static int method_test_TRT(fwts_framework *fw)
 		"_TRT", NULL, 0, method_test_TRT_return, "_TRT");
 }
 
+static int method_test_TSN(fwts_framework *fw)
+{
+	return method_evaluate_method(fw, METHOD_OPTIONAL,
+		"_TSN", NULL, 0, method_test_reference_return, "_TSN");
+}
+
 static int method_test_TSP(fwts_framework *fw)
 {
 	return method_evaluate_method(fw, METHOD_OPTIONAL,
@@ -6632,6 +6638,7 @@  static fwts_framework_minor_test method_tests[] = {
 	{ method_test_TMP, "Test _TMP (Thermal Zone Current Temp)." },
 	{ method_test_TPT, "Test _TPT (Trip Point Temperature)." },
 	{ method_test_TRT, "Test _TRT (Thermal Relationship Table)." },
+	{ method_test_TSN, "Test _TSN (Thermal Sensor Device)." },
 	{ method_test_TSP, "Test _TSP (Thermal Sampling Period)." },
 	{ method_test_TST, "Test _TST (Temperature Sensor Threshold)." },
 	{ method_test_TZD, "Test _TZD (Thermal Zone Devices)." },