ACK: [PATCH 1/2] acpi: method: acpi: method: add check for ACPI 5.1 _CCA (LP: #1363936)

Alex Hung alex.hung at canonical.com
Wed Sep 3 04:16:06 UTC 2014


On 09/01/2014 06:27 PM, Colin King wrote:
> From: Colin Ian King <colin.king at canonical.com>
> 
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  src/acpi/method/method.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/src/acpi/method/method.c b/src/acpi/method/method.c
> index 4ccc094..64e87f1 100644
> --- a/src/acpi/method/method.c
> +++ b/src/acpi/method/method.c
> @@ -60,6 +60,7 @@
>   * _BTM  10.2.2.8	Y
>   * _BTP  10.2.2.7	Y
>   * _CBA  PCI f/w spec	Y
> + * _CCA  6.2.17		Y
>   * _CDM  6.2.1		Y
>   * _CID  6.1.2		N
>   * _CLS  6.1.3		N requires PCI SIG class info
> @@ -2006,6 +2007,12 @@ static int method_test_PXM(fwts_framework *fw)
>  		"_PXM", NULL, 0, method_test_integer_return, NULL);
>  }
>  
> +/* Section 6.2.17 _CCA */
> +static int method_test_CCA(fwts_framework *fw)
> +{
> +	return method_evaluate_method(fw, METHOD_OPTIONAL,
> +		"_CCA", NULL, 0, method_test_integer_return, NULL);
> +}
>  
>  /*
>   * Section 6.3 Device Insertion, Removal and Status Objects
> @@ -5006,6 +5013,7 @@ static fwts_framework_minor_test method_tests[] = {
>  	{ method_test_PXM, "Test _PXM (Proximity)." },
>  	/* { method_test_SLI, "Test _SLI (System Locality Information)." }, */
>  	/* { method_test_SRS, "Test _SRS (Set Resource Settings)." }, */
> +	{ method_test_CCA, "Test _CCA (Cache Coherency Attribute)." },
>  
>  	/* Section 6.3 Device Insertion, Removal and Status Objects */
>  
> 

Acked-by: Alex Hung <alex.hung at canonical.com>



More information about the fwts-devel mailing list