diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 14:02:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-01-13 14:02:55 -0500 |
commit | 581548db3b3c0f6e25b500329eb02e3c72e7acbe (patch) | |
tree | 09b5633ee5432d2c8f1d56b8d7abb7a2f41337d0 | |
parent | 03a4491f5d6835028dbbcf36990599c5c9f6ff55 (diff) | |
parent | dff0092bcdb7b21ba2e862fed7c92e79dfb26806 (diff) |
Merge branch 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6
* 'release' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6:
[IA64] Fix format warning in arch/ia64/kernel/acpi.c
-rw-r--r-- | arch/ia64/kernel/acpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/acpi.c b/arch/ia64/kernel/acpi.c index 7b897b7b0ae6..90ebceb899a0 100644 --- a/arch/ia64/kernel/acpi.c +++ b/arch/ia64/kernel/acpi.c | |||
@@ -479,7 +479,7 @@ acpi_numa_processor_affinity_init(struct acpi_srat_cpu_affinity *pa) | |||
479 | 479 | ||
480 | if (srat_num_cpus >= ARRAY_SIZE(node_cpuid)) { | 480 | if (srat_num_cpus >= ARRAY_SIZE(node_cpuid)) { |
481 | printk_once(KERN_WARNING | 481 | printk_once(KERN_WARNING |
482 | "node_cpuid[%d] is too small, may not be able to use all cpus\n", | 482 | "node_cpuid[%ld] is too small, may not be able to use all cpus\n", |
483 | ARRAY_SIZE(node_cpuid)); | 483 | ARRAY_SIZE(node_cpuid)); |
484 | return; | 484 | return; |
485 | } | 485 | } |