Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f537a53d authored by Jaswinder Singh Rajput's avatar Jaswinder Singh Rajput Committed by Ingo Molnar
Browse files

iscsi_ibft.c fix compilation warning



 drivers/firmware/iscsi_ibft.c: In function ‘ibft_init’:
 drivers/firmware/iscsi_ibft.c:942: warning: format ‘%lx’ expects type ‘long unsigned int’, but argument 2 has type ‘phys_addr_t’

Signed-off-by: default avatarJaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 9c8976a1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -938,8 +938,8 @@ static int __init ibft_init(void)
		return -ENOMEM;

	if (ibft_addr) {
		printk(KERN_INFO "iBFT detected at 0x%lx.\n",
		       virt_to_phys((void *)ibft_addr));
		printk(KERN_INFO "iBFT detected at 0x%llx.\n",
		       (u64)virt_to_phys((void *)ibft_addr));

		rc = ibft_check_device();
		if (rc)