diff mbox series

acpi: pptt: Fix PPTTBadSubtableLength error message

Message ID 1529610641-20598-1-git-send-email-jhugo@codeaurora.org
State Accepted
Headers show
Series acpi: pptt: Fix PPTTBadSubtableLength error message | expand

Commit Message

Jeffrey Hugo June 21, 2018, 7:50 p.m. UTC
The PPTTBadSubtableLength error message outputs both what the table
length is, and what it should be.  However, the printed values are
flipped.  The "should be" value is printed as what was read, and vice
versa.

Correct the value ordering so that the error message provides accurate
information.

Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
---
 src/acpi/pptt/pptt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Alex Hung June 22, 2018, 4:22 a.m. UTC | #1
On 2018-06-21 12:50 PM, Jeffrey Hugo wrote:
> The PPTTBadSubtableLength error message outputs both what the table
> length is, and what it should be.  However, the printed values are
> flipped.  The "should be" value is printed as what was read, and vice
> versa.
> 
> Correct the value ordering so that the error message provides accurate
> information.
> 
> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
> ---
>   src/acpi/pptt/pptt.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/acpi/pptt/pptt.c b/src/acpi/pptt/pptt.c
> index 7668974..c2a301f 100644
> --- a/src/acpi/pptt/pptt.c
> +++ b/src/acpi/pptt/pptt.c
> @@ -155,7 +155,7 @@ static int pptt_test1(fwts_framework *fw)
>   				"PPTTBadSubtableLength",
>   				"PPTT subtable Type 0x%2.2" PRIx8 " should have "
>   				"length 0x%2.2" PRIx8 ", got 0x%2.2" PRIx8,
> -				entry->type, entry->length, type_length);
> +				entry->type, type_length, entry->length);
>   			break;
>   		}
>   
> 

Acked-by: Alex Hung <alex.hung@canonical.com>
Colin Ian King July 3, 2018, 9:17 a.m. UTC | #2
On 21/06/18 20:50, Jeffrey Hugo wrote:
> The PPTTBadSubtableLength error message outputs both what the table
> length is, and what it should be.  However, the printed values are
> flipped.  The "should be" value is printed as what was read, and vice
> versa.
> 
> Correct the value ordering so that the error message provides accurate
> information.
> 
> Signed-off-by: Jeffrey Hugo <jhugo@codeaurora.org>
> ---
>  src/acpi/pptt/pptt.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/acpi/pptt/pptt.c b/src/acpi/pptt/pptt.c
> index 7668974..c2a301f 100644
> --- a/src/acpi/pptt/pptt.c
> +++ b/src/acpi/pptt/pptt.c
> @@ -155,7 +155,7 @@ static int pptt_test1(fwts_framework *fw)
>  				"PPTTBadSubtableLength",
>  				"PPTT subtable Type 0x%2.2" PRIx8 " should have "
>  				"length 0x%2.2" PRIx8 ", got 0x%2.2" PRIx8,
> -				entry->type, entry->length, type_length);
> +				entry->type, type_length, entry->length);
>  			break;
>  		}
>  
> 
Good catch!

Acked-by: Colin Ian King <colin.king@canonical.com>
diff mbox series

Patch

diff --git a/src/acpi/pptt/pptt.c b/src/acpi/pptt/pptt.c
index 7668974..c2a301f 100644
--- a/src/acpi/pptt/pptt.c
+++ b/src/acpi/pptt/pptt.c
@@ -155,7 +155,7 @@  static int pptt_test1(fwts_framework *fw)
 				"PPTTBadSubtableLength",
 				"PPTT subtable Type 0x%2.2" PRIx8 " should have "
 				"length 0x%2.2" PRIx8 ", got 0x%2.2" PRIx8,
-				entry->type, entry->length, type_length);
+				entry->type, type_length, entry->length);
 			break;
 		}