From: Sergio Monteiro Basto <sergio@sergiomb.no-ip.org>
To: acpi devel <linux-acpi@vger.kernel.org>
Cc: David Brownell <david-b@pacbell.net>
Subject: [Fwd: [patch 2.6.18-rc7] ACPI: build warnings begone (x86_64)]
Date: Wed, 20 Sep 2006 02:29:48 +0100 [thread overview]
Message-ID: <1158715788.3098.24.camel@localhost.portugal> (raw)
[-- Attachment #1: Type: text/plain, Size: 3756 bytes --]
Hi, I think this should be reported on
ACPI mailing list , so I am Forwarding to this list
-------- Forwarded Message --------
> From: David Brownell <david-b@pacbell.net>
> To: Brown, Len <len.brown@intel.com>
> Cc: linux-kernel@vger.kernel.org
> Subject: [patch 2.6.18-rc7] ACPI: build warnings begone (x86_64)
> Date: Wed, 13 Sep 2006 21:00:33 -0700
>
> This makes various ACPI compiler warnings go away (x86_64),
> making builds be warning-free again.
>
> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
>
> Index: g26/drivers/acpi/executer/exmutex.c
> ===================================================================
> --- g26.orig/drivers/acpi/executer/exmutex.c 2006-07-14 10:03:04.000000000 -0700
> +++ g26/drivers/acpi/executer/exmutex.c 2006-09-13 13:31:10.000000000 -0700
> @@ -266,10 +266,10 @@ acpi_ex_release_mutex(union acpi_operand
> walk_state->thread->thread_id)
> && (obj_desc->mutex.os_mutex != ACPI_GLOBAL_LOCK)) {
> ACPI_ERROR((AE_INFO,
> - "Thread %X cannot release Mutex [%4.4s] acquired by thread %X",
> - (u32) walk_state->thread->thread_id,
> + "Thread %p cannot release Mutex [%4.4s] acquired by thread %p",
> + walk_state->thread->thread_id,
> acpi_ut_get_node_name(obj_desc->mutex.node),
> - (u32) obj_desc->mutex.owner_thread->thread_id));
> + obj_desc->mutex.owner_thread->thread_id));
> return_ACPI_STATUS(AE_AML_NOT_OWNER);
> }
>
> Index: g26/drivers/acpi/tables/tbget.c
> ===================================================================
> --- g26.orig/drivers/acpi/tables/tbget.c 2006-07-14 10:03:04.000000000 -0700
> +++ g26/drivers/acpi/tables/tbget.c 2006-09-13 13:37:27.000000000 -0700
> @@ -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);
> Index: g26/drivers/acpi/utilities/utmutex.c
> ===================================================================
> --- g26.orig/drivers/acpi/utilities/utmutex.c 2006-07-14 10:03:04.000000000 -0700
> +++ g26/drivers/acpi/utilities/utmutex.c 2006-09-13 13:39:24.000000000 -0700
> @@ -258,8 +258,8 @@ acpi_status acpi_ut_acquire_mutex(acpi_m
> acpi_gbl_mutex_info[mutex_id].thread_id = this_thread_id;
> } else {
> ACPI_EXCEPTION((AE_INFO, status,
> - "Thread %X could not acquire Mutex [%X]",
> - (u32) this_thread_id, mutex_id));
> + "Thread %p could not acquire Mutex [%X]",
> + this_thread_id, mutex_id));
> }
>
> return (status);
> Index: g26/drivers/acpi/tables/tbrsdt.c
> ===================================================================
> --- g26.orig/drivers/acpi/tables/tbrsdt.c 2006-07-14 10:03:04.000000000 -0700
> +++ g26/drivers/acpi/tables/tbrsdt.c 2006-09-13 13:38:39.000000000 -0700
> @@ -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-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Sérgio M.B.
[-- Attachment #2: smime.p7s --]
[-- Type: application/x-pkcs7-signature, Size: 2166 bytes --]
next reply other threads:[~2006-09-20 1:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-09-20 1:29 Sergio Monteiro Basto [this message]
-- strict thread matches above, loose matches on Subject: below --
2006-09-20 15:11 [Fwd: [patch 2.6.18-rc7] ACPI: build warnings begone (x86_64)] Moore, Robert
2006-09-20 15:49 ` David Brownell
2006-09-20 16:49 ` Alexey Starikovskiy
2006-09-20 15:55 Moore, Robert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1158715788.3098.24.camel@localhost.portugal \
--to=sergio@sergiomb.no-ip.org \
--cc=david-b@pacbell.net \
--cc=linux-acpi@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox