Applied.

thanks,
-Len

On Tuesday 10 October 2006 17:20, [EMAIL PROTECTED] wrote:
> From: Randy Dunlap <[EMAIL PROTECTED]>
> 
> Fix printk format warnings in drivers/acpi:
> drivers/acpi/tables/tbget.c:326: warning: format '%X' expects type 'unsigned 
> int', but argument 5 has type 'long unsigned int'
> drivers/acpi/tables/tbrsdt.c:189: warning: format '%X' expects type 'unsigned 
> int', but argument 5 has type 'long unsigned int'
> 
> Signed-off-by: Randy Dunlap <[EMAIL PROTECTED]>
> Cc: "Brown, Len" <[EMAIL PROTECTED]>
> Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
> ---
> 
>  drivers/acpi/tables/tbget.c  |    2 +-
>  drivers/acpi/tables/tbrsdt.c |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff -puN drivers/acpi/tables/tbget.c~acpi-fix-printk-format-warnings 
> drivers/acpi/tables/tbget.c
> --- a/drivers/acpi/tables/tbget.c~acpi-fix-printk-format-warnings
> +++ a/drivers/acpi/tables/tbget.c
> @@ -324,7 +324,7 @@ acpi_tb_get_this_table(struct acpi_point
>  
>       if (header->length < sizeof(struct acpi_table_header)) {
>               ACPI_ERROR((AE_INFO,
> -                         "Table length (%X) is smaller than minimum (%X)",
> +                         "Table length (%X) is smaller than minimum (%zX)",
>                           header->length, sizeof(struct acpi_table_header)));
>  
>               return_ACPI_STATUS(AE_INVALID_TABLE_LENGTH);
> diff -puN drivers/acpi/tables/tbrsdt.c~acpi-fix-printk-format-warnings 
> drivers/acpi/tables/tbrsdt.c
> --- a/drivers/acpi/tables/tbrsdt.c~acpi-fix-printk-format-warnings
> +++ a/drivers/acpi/tables/tbrsdt.c
> @@ -187,7 +187,7 @@ acpi_status acpi_tb_validate_rsdt(struct
>  
>       if (table_ptr->length < sizeof(struct acpi_table_header)) {
>               ACPI_ERROR((AE_INFO,
> -                         "RSDT/XSDT length (%X) is smaller than minimum 
> (%X)",
> +                         "RSDT/XSDT length (%X) is smaller than minimum 
> (%zX)",
>                           table_ptr->length,
>                           sizeof(struct acpi_table_header)));
>  
> _
> -
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to [EMAIL PROTECTED]
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
-
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to