Skip to content

Commit

Permalink
ACPI / PM: print physical addresses consistently with other parts of …
Browse files Browse the repository at this point in the history
…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>
  • Loading branch information
Bjorn Helgaas authored and Len Brown committed Mar 30, 2012
1 parent c16fa4f commit c6436f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/acpi/nvs.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ static int suspend_nvs_register(unsigned long start, unsigned long size)
{
struct nvs_page *entry, *next;

pr_info("PM: Registering ACPI NVS region at %lx (%ld bytes)\n",
start, size);
pr_info("PM: Registering ACPI NVS region [mem %#010lx-%#010lx] (%ld bytes)\n",
start, start + size - 1, size);

while (size > 0) {
unsigned int nr_bytes;
Expand Down

0 comments on commit c6436f5

Please sign in to comment.