* - ia64-improper-printk-format-in-acpi-cpufreq.patch removed from -mm tree
@ 2008-07-18 23:24 akpm
0 siblings, 0 replies; only message in thread
From: akpm @ 2008-07-18 23:24 UTC (permalink / raw)
To: den, tony.luck, venkatesh.pallipadi, mm-commits
The patch titled
ia64: improper printk format in acpi-cpufreq
has been removed from the -mm tree. Its filename was
ia64-improper-printk-format-in-acpi-cpufreq.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: ia64: improper printk format in acpi-cpufreq
From: "Denis V. Lunev" <den@openvz.org>
When dprintk is enabled the following warnings are generated:
arch/ia64/kernel/cpufreq/acpi-cpufreq.c: In function 'processor_set_pstate':
arch/ia64/kernel/cpufreq/acpi-cpufreq.c:54: warning: format '%x' expects type 'unsigned int', but argument 3 has type 's64'
arch/ia64/kernel/cpufreq/acpi-cpufreq.c: In function 'processor_get_pstate':
arch/ia64/kernel/cpufreq/acpi-cpufreq.c:76: warning: format '%x' expects type 'unsigned int', but argument 2 has type 's64'
Signed-off-by: Denis V. Lunev <den@openvz.org>
Cc: Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
Cc: Tony Luck <tony.luck@intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
arch/ia64/kernel/cpufreq/acpi-cpufreq.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN arch/ia64/kernel/cpufreq/acpi-cpufreq.c~ia64-improper-printk-format-in-acpi-cpufreq arch/ia64/kernel/cpufreq/acpi-cpufreq.c
--- a/arch/ia64/kernel/cpufreq/acpi-cpufreq.c~ia64-improper-printk-format-in-acpi-cpufreq
+++ a/arch/ia64/kernel/cpufreq/acpi-cpufreq.c
@@ -51,7 +51,7 @@ processor_set_pstate (
retval = ia64_pal_set_pstate((u64)value);
if (retval) {
- dprintk("Failed to set freq to 0x%x, with error 0x%x\n",
+ dprintk("Failed to set freq to 0x%x, with error 0x%lx\n",
value, retval);
return -ENODEV;
}
@@ -74,7 +74,7 @@ processor_get_pstate (
if (retval)
dprintk("Failed to get current freq with "
- "error 0x%x, idx 0x%x\n", retval, *value);
+ "error 0x%lx, idx 0x%x\n", retval, *value);
return (int)retval;
}
_
Patches currently in -mm which might be from den@openvz.org are
linux-next.patch
proc-use-non-racy-method-for-proc-page_owner-creation-page_owner.patch
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-07-18 23:24 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-18 23:24 - ia64-improper-printk-format-in-acpi-cpufreq.patch removed from -mm tree akpm
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox