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

Commit 99109a6d authored by Alan Cox's avatar Alan Cox Committed by David Woodhouse
Browse files

[MTD] [MAPS] dilnetpc: Fix printk warning



The type of a resource could be 32 or 64bit depending upon platform or
option so cast it explicitly.

Signed-off-by: default avatarAlan Cox <alan@redhat.com>
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent 83d48091
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -402,8 +402,8 @@ static int __init init_dnpc(void)
			++higlvl_partition_info[i].name;
	}

	printk(KERN_NOTICE "DIL/Net %s flash: 0x%lx at 0x%lx\n",
		is_dnp ? "DNPC" : "ADNP", dnpc_map.size, dnpc_map.phys);
	printk(KERN_NOTICE "DIL/Net %s flash: 0x%lx at 0x%llx\n",
		is_dnp ? "DNPC" : "ADNP", dnpc_map.size, (unsigned long long)dnpc_map.phys);

	dnpc_map.virt = ioremap_nocache(dnpc_map.phys, dnpc_map.size);