diff mbox series

acpitables: remove redundant "OEM" from Creator ID field

Message ID 20180810000859.30003-1-alex.hung@canonical.com
State Accepted
Headers show
Series acpitables: remove redundant "OEM" from Creator ID field | expand

Commit Message

Alex Hung Aug. 10, 2018, 12:08 a.m. UTC
"Creator ID" is used in ACPI spec, not "OEM Creator ID". In addition,
this ID may not be specific to OEM but to IHV or IFV.

Signed-off-by: Alex Hung <alex.hung@canonical.com>
---
 src/acpi/acpitables/acpitables.c | 2 +-
 src/sbbr/acpitables/acpitables.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Colin Ian King Aug. 10, 2018, 7:50 a.m. UTC | #1
On 10/08/18 01:08, Alex Hung wrote:
> "Creator ID" is used in ACPI spec, not "OEM Creator ID". In addition,
> this ID may not be specific to OEM but to IHV or IFV.
> 
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>  src/acpi/acpitables/acpitables.c | 2 +-
>  src/sbbr/acpitables/acpitables.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/acpi/acpitables/acpitables.c b/src/acpi/acpitables/acpitables.c
> index b11b8e35..6f0b110a 100644
> --- a/src/acpi/acpitables/acpitables.c
> +++ b/src/acpi/acpitables/acpitables.c
> @@ -106,7 +106,7 @@ static int acpi_table_check_test1(fwts_framework *fw)
>  		passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, 4) &
>  			 acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, 6) &
>  			 acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, 8) &
> -			 acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, 4);
> +			 acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, 4);
>  		if (passed)
>  			fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
>  
> diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c
> index 72ce743c..7d0d1987 100644
> --- a/src/sbbr/acpitables/acpitables.c
> +++ b/src/sbbr/acpitables/acpitables.c
> @@ -176,7 +176,7 @@ static int acpi_table_sbbr_check_test2(fwts_framework *fw)
>  			passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, MIN_SIG) &
>  			    acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, OEM_ID) &
>  			    acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, OEM_TABLE_ID) &
> -			    acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, OEM_CREATOR_ID);
> +			    acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, OEM_CREATOR_ID);
>  			if (passed)
>  				fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
>  		}
> 
Thanks Alex,

Acked-by: Colin Ian King <colin.king@canonical.com>
Ivan Hu Aug. 14, 2018, 7:44 a.m. UTC | #2
On 08/10/2018 08:08 AM, Alex Hung wrote:
> "Creator ID" is used in ACPI spec, not "OEM Creator ID". In addition,
> this ID may not be specific to OEM but to IHV or IFV.
> 
> Signed-off-by: Alex Hung <alex.hung@canonical.com>
> ---
>   src/acpi/acpitables/acpitables.c | 2 +-
>   src/sbbr/acpitables/acpitables.c | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/acpi/acpitables/acpitables.c b/src/acpi/acpitables/acpitables.c
> index b11b8e35..6f0b110a 100644
> --- a/src/acpi/acpitables/acpitables.c
> +++ b/src/acpi/acpitables/acpitables.c
> @@ -106,7 +106,7 @@ static int acpi_table_check_test1(fwts_framework *fw)
>   		passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, 4) &
>   			 acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, 6) &
>   			 acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, 8) &
> -			 acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, 4);
> +			 acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, 4);
>   		if (passed)
>   			fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
>   
> diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c
> index 72ce743c..7d0d1987 100644
> --- a/src/sbbr/acpitables/acpitables.c
> +++ b/src/sbbr/acpitables/acpitables.c
> @@ -176,7 +176,7 @@ static int acpi_table_sbbr_check_test2(fwts_framework *fw)
>   			passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, MIN_SIG) &
>   			    acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, OEM_ID) &
>   			    acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, OEM_TABLE_ID) &
> -			    acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, OEM_CREATOR_ID);
> +			    acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, OEM_CREATOR_ID);
>   			if (passed)
>   				fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
>   		}
> 

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

Patch

diff --git a/src/acpi/acpitables/acpitables.c b/src/acpi/acpitables/acpitables.c
index b11b8e35..6f0b110a 100644
--- a/src/acpi/acpitables/acpitables.c
+++ b/src/acpi/acpitables/acpitables.c
@@ -106,7 +106,7 @@  static int acpi_table_check_test1(fwts_framework *fw)
 		passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, 4) &
 			 acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, 6) &
 			 acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, 8) &
-			 acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, 4);
+			 acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, 4);
 		if (passed)
 			fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
 
diff --git a/src/sbbr/acpitables/acpitables.c b/src/sbbr/acpitables/acpitables.c
index 72ce743c..7d0d1987 100644
--- a/src/sbbr/acpitables/acpitables.c
+++ b/src/sbbr/acpitables/acpitables.c
@@ -176,7 +176,7 @@  static int acpi_table_sbbr_check_test2(fwts_framework *fw)
 			passed = acpi_table_check_field_test(fw, name, "Signature", hdr->signature, MIN_SIG) &
 			    acpi_table_check_field_test(fw, name, "OEM ID", hdr->oem_id, OEM_ID) &
 			    acpi_table_check_field_test(fw, name, "OEM Table ID", hdr->oem_tbl_id, OEM_TABLE_ID) &
-			    acpi_table_check_field_test(fw, name, "OEM Creator ID", hdr->creator_id, OEM_CREATOR_ID);
+			    acpi_table_check_field_test(fw, name, "Creator ID", hdr->creator_id, OEM_CREATOR_ID);
 			if (passed)
 				fwts_passed(fw, "Table %s has valid signature and ID strings.", name);
 		}