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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
				}
			}