diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2007-03-07 16:36:01 +0000 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-03-08 09:46:28 +0000 |
commit | 99109a6dacfc314a51371d9c3212a55cd7c0c98c (patch) | |
tree | 0ea3366715061dd4ecf5108ab189d826de6b6ef3 /drivers | |
parent | 83d480917b1af3f8fcffa7a9c8775e0f2dd03395 (diff) | |
download | linux-3.10-99109a6dacfc314a51371d9c3212a55cd7c0c98c.tar.gz linux-3.10-99109a6dacfc314a51371d9c3212a55cd7c0c98c.tar.bz2 linux-3.10-99109a6dacfc314a51371d9c3212a55cd7c0c98c.zip |
[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: Alan Cox <alan@redhat.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/mtd/maps/dilnetpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/maps/dilnetpc.c b/drivers/mtd/maps/dilnetpc.c index b1104fe1f20..1c3b34ad732 100644 --- a/drivers/mtd/maps/dilnetpc.c +++ b/drivers/mtd/maps/dilnetpc.c @@ -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); |