Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ACPI / PM: print physical addresses consistently with other parts of kernel

Print physical address info in a style consistent with the %pR style used
elsewhere in the kernel.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Len Brown <len.brown@intel.com>

authored by

Bjorn Helgaas and committed by
Len Brown
c6436f5a c16fa4f2

+2 -2
+2 -2
drivers/acpi/nvs.c
··· 95 95 { 96 96 struct nvs_page *entry, *next; 97 97 98 - pr_info("PM: Registering ACPI NVS region at %lx (%ld bytes)\n", 99 - start, size); 98 + pr_info("PM: Registering ACPI NVS region [mem %#010lx-%#010lx] (%ld bytes)\n", 99 + start, start + size - 1, size); 100 100 101 101 while (size > 0) { 102 102 unsigned int nr_bytes;