From: "Jan Beulich" <JBeulich@novell.com>
To: Len Brown <lenb@kernel.org>
Cc: linux-acpi@vger.kernel.org
Subject: [PATCH] acpi: fix parameter type of acpi_get_node()
Date: Wed, 27 Apr 2011 15:49:07 +0100 [thread overview]
Message-ID: <4DB84903020000780003E662@vpn.id2.novell.com> (raw)
The extra (bogus) level of indirection worked only because acpi_handle
itself is a pointer to void.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
---
drivers/acpi/numa.c | 2 +-
include/linux/acpi.h | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
--- 2.6.39-rc5/drivers/acpi/numa.c
+++ 2.6.39-rc5-acpi-get-node/drivers/acpi/numa.c
@@ -320,7 +320,7 @@ int acpi_get_pxm(acpi_handle h)
return -1;
}
-int acpi_get_node(acpi_handle *handle)
+int acpi_get_node(acpi_handle handle)
{
int pxm, node = -1;
--- 2.6.39-rc5/include/linux/acpi.h
+++ 2.6.39-rc5-acpi-get-node/include/linux/acpi.h
@@ -223,13 +223,13 @@ extern void acpi_osi_setup(char *str);
#ifdef CONFIG_ACPI_NUMA
int acpi_get_pxm(acpi_handle handle);
-int acpi_get_node(acpi_handle *handle);
+int acpi_get_node(acpi_handle handle);
#else
static inline int acpi_get_pxm(acpi_handle handle)
{
return 0;
}
-static inline int acpi_get_node(acpi_handle *handle)
+static inline int acpi_get_node(acpi_handle handle)
{
return 0;
}
reply other threads:[~2011-04-27 14:49 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=4DB84903020000780003E662@vpn.id2.novell.com \
--to=jbeulich@novell.com \
--cc=lenb@kernel.org \
--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;
as well as URLs for NNTP newsgroup(s).