diff mbox series

[14/27] acpi: ecdt: fix some missing pointer constifications

Message ID 20180815131129.24146-15-colin.king@canonical.com
State Accepted
Headers show
Series [01/27] lib: fwts_framework: ensure src pointer is const | expand

Commit Message

Colin Ian King Aug. 15, 2018, 1:11 p.m. UTC
From: Colin Ian King <colin.king@canonical.com>

Clean up some build warnings by adding in missing const

Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
 src/acpi/ecdt/ecdt.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Alex Hung Aug. 15, 2018, 6:10 p.m. UTC | #1
On 2018-08-15 06:11 AM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
> 
> Clean up some build warnings by adding in missing const
> 
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>   src/acpi/ecdt/ecdt.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/src/acpi/ecdt/ecdt.c b/src/acpi/ecdt/ecdt.c
> index b0c171ed..c25b24b4 100644
> --- a/src/acpi/ecdt/ecdt.c
> +++ b/src/acpi/ecdt/ecdt.c
> @@ -98,7 +98,7 @@ static int ecdt_test1(fwts_framework *fw)
>   	}
>   
>   	/* EC_ID must be at least 1 byte long for the null terminator */
> -	min_length = (void *)&ecdt->ec_id[0] - (void *)ecdt;
> +	min_length = (const void *)&ecdt->ec_id[0] - (const void *)ecdt;
>   
>   	if (ecdt->header.length < min_length + 1) {
>   		fwts_failed(fw, LOG_LEVEL_MEDIUM,
> @@ -143,7 +143,7 @@ static int ecdt_test1(fwts_framework *fw)
>           fwts_log_info_verbatim(fw, "    Address                 0x%16.16" PRIx64, ecdt->ec_data.address);
>           fwts_log_info_verbatim(fw, "  UID:                      0x%8.8" PRIx32, ecdt->uid);
>           fwts_log_info_verbatim(fw, "  GPE_BIT:                  0x%2.2" PRIx8, ecdt->gpe_bit);
> -        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (char *)ecdt->ec_id);
> +        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (const char *)ecdt->ec_id);
>           fwts_log_nl(fw);
>   
>           if (fwts_acpi_init(fw) != FWTS_OK) {
> @@ -158,10 +158,10 @@ static int ecdt_test1(fwts_framework *fw)
>   		ACPI_BUFFER buf;
>   		ACPI_OBJECT *obj;
>   		int ret;
> -		size_t len = strlen((char *)ecdt->ec_id) + 6;
> +		size_t len = strlen((const char *)ecdt->ec_id) + 6;
>   		char name[len];
>   
> -		snprintf(name, len, "%s._UID", (char *)ecdt->ec_id);
> +		snprintf(name, len, "%s._UID", (const char *)ecdt->ec_id);
>   
>   		arg_list.Count   = 0;
>   		arg_list.Pointer = NULL;
> 



Acked-by: Alex Hung <alex.hung@canonical.com>
Ivan Hu Aug. 16, 2018, 9:16 a.m. UTC | #2
On 08/15/2018 09:11 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> Clean up some build warnings by adding in missing const
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
>  src/acpi/ecdt/ecdt.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/src/acpi/ecdt/ecdt.c b/src/acpi/ecdt/ecdt.c
> index b0c171ed..c25b24b4 100644
> --- a/src/acpi/ecdt/ecdt.c
> +++ b/src/acpi/ecdt/ecdt.c
> @@ -98,7 +98,7 @@ static int ecdt_test1(fwts_framework *fw)
>  	}
>  
>  	/* EC_ID must be at least 1 byte long for the null terminator */
> -	min_length = (void *)&ecdt->ec_id[0] - (void *)ecdt;
> +	min_length = (const void *)&ecdt->ec_id[0] - (const void *)ecdt;
>  
>  	if (ecdt->header.length < min_length + 1) {
>  		fwts_failed(fw, LOG_LEVEL_MEDIUM,
> @@ -143,7 +143,7 @@ static int ecdt_test1(fwts_framework *fw)
>          fwts_log_info_verbatim(fw, "    Address                 0x%16.16" PRIx64, ecdt->ec_data.address);
>          fwts_log_info_verbatim(fw, "  UID:                      0x%8.8" PRIx32, ecdt->uid);
>          fwts_log_info_verbatim(fw, "  GPE_BIT:                  0x%2.2" PRIx8, ecdt->gpe_bit);
> -        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (char *)ecdt->ec_id);
> +        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (const char *)ecdt->ec_id);
>          fwts_log_nl(fw);
>  
>          if (fwts_acpi_init(fw) != FWTS_OK) {
> @@ -158,10 +158,10 @@ static int ecdt_test1(fwts_framework *fw)
>  		ACPI_BUFFER buf;
>  		ACPI_OBJECT *obj;
>  		int ret;
> -		size_t len = strlen((char *)ecdt->ec_id) + 6;
> +		size_t len = strlen((const char *)ecdt->ec_id) + 6;
>  		char name[len];
>  
> -		snprintf(name, len, "%s._UID", (char *)ecdt->ec_id);
> +		snprintf(name, len, "%s._UID", (const char *)ecdt->ec_id);
>  
>  		arg_list.Count   = 0;
>  		arg_list.Pointer = NULL;

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

Patch

diff --git a/src/acpi/ecdt/ecdt.c b/src/acpi/ecdt/ecdt.c
index b0c171ed..c25b24b4 100644
--- a/src/acpi/ecdt/ecdt.c
+++ b/src/acpi/ecdt/ecdt.c
@@ -98,7 +98,7 @@  static int ecdt_test1(fwts_framework *fw)
 	}
 
 	/* EC_ID must be at least 1 byte long for the null terminator */
-	min_length = (void *)&ecdt->ec_id[0] - (void *)ecdt;
+	min_length = (const void *)&ecdt->ec_id[0] - (const void *)ecdt;
 
 	if (ecdt->header.length < min_length + 1) {
 		fwts_failed(fw, LOG_LEVEL_MEDIUM,
@@ -143,7 +143,7 @@  static int ecdt_test1(fwts_framework *fw)
         fwts_log_info_verbatim(fw, "    Address                 0x%16.16" PRIx64, ecdt->ec_data.address);
         fwts_log_info_verbatim(fw, "  UID:                      0x%8.8" PRIx32, ecdt->uid);
         fwts_log_info_verbatim(fw, "  GPE_BIT:                  0x%2.2" PRIx8, ecdt->gpe_bit);
-        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (char *)ecdt->ec_id);
+        fwts_log_info_verbatim(fw, "  EC_ID:                    '%s'", (const char *)ecdt->ec_id);
         fwts_log_nl(fw);
 
         if (fwts_acpi_init(fw) != FWTS_OK) {
@@ -158,10 +158,10 @@  static int ecdt_test1(fwts_framework *fw)
 		ACPI_BUFFER buf;
 		ACPI_OBJECT *obj;
 		int ret;
-		size_t len = strlen((char *)ecdt->ec_id) + 6;
+		size_t len = strlen((const char *)ecdt->ec_id) + 6;
 		char name[len];
 
-		snprintf(name, len, "%s._UID", (char *)ecdt->ec_id);
+		snprintf(name, len, "%s._UID", (const char *)ecdt->ec_id);
 
 		arg_list.Count   = 0;
 		arg_list.Pointer = NULL;