iscsi_ibft: fix warning in reserve_ibft_region()

Use %pa to print a physical address.

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Maurizio Lombardi <mlombard@redhat.com>
Signed-off-by: Konrad Rzeszutek Wilk <konrad@kernel.org>
This commit is contained in:
Maurizio Lombardi 2021-08-05 18:11:50 +02:00 committed by Konrad Rzeszutek Wilk
parent 342f43af70
commit 7fd1d00bf8
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}