Commit 7fd1d00b authored by Maurizio Lombardi's avatar Maurizio Lombardi Committed by Konrad Rzeszutek Wilk

iscsi_ibft: fix warning in reserve_ibft_region()

Use %pa to print a physical address.
Reported-by: default avatarkernel test robot <lkp@intel.com>
Signed-off-by: default avatarMaurizio Lombardi <mlombard@redhat.com>
Signed-off-by: default avatarKonrad Rzeszutek Wilk <konrad@kernel.org>
parent 342f43af
......@@ -83,7 +83,7 @@ void __init reserve_ibft_region(void)
if (pos + len <= (IBFT_END-1)) {
ibft_phys_addr = pos;
memblock_reserve(ibft_phys_addr, PAGE_ALIGN(len));
pr_info("iBFT found at 0x%lx.\n", ibft_phys_addr);
pr_info("iBFT found at %pa.\n", &ibft_phys_addr);
return;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment