2.6.27-stable review patch. If anyone has any objections, please let us know. ------------------ From: Thomas Renninger commit: 27663c5855b10af9ec67bc7dfba001426ba21222 forgot to convert things at two prints. Cc: Matthew Wilcox Cc: Len Brown Signed-off-by: Thomas Renninger Signed-off-by: Greg Kroah-Hartman --- drivers/misc/intel_menlow.c | 2 +- drivers/pci/hotplug/acpiphp_ibm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- a/drivers/misc/intel_menlow.c +++ b/drivers/misc/intel_menlow.c @@ -104,7 +104,7 @@ static int memory_get_cur_bandwidth(stru if (ACPI_FAILURE(status)) return -EFAULT; - return sprintf(buf, "%ld\n", value); + return sprintf(buf, "%lld\n", value); } static int memory_set_cur_bandwidth(struct thermal_cooling_device *cdev, --- a/drivers/pci/hotplug/acpiphp_ibm.c +++ b/drivers/pci/hotplug/acpiphp_ibm.c @@ -204,7 +204,7 @@ static int ibm_set_attention_status(stru err("APLS evaluation failed: 0x%08x\n", stat); return -ENODEV; } else if (!rc) { - err("APLS method failed: 0x%08lx\n", rc); + err("APLS method failed: 0x%08llx\n", rc); return -ERANGE; } return 0; -- 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/