[MTD] Fix printk format warning in physmap. (resources again)

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Tue Nov 28 18:59:07 EST 2006


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=998a43e72d20afa7566dad66fd866fe939a89c09
Commit:     998a43e72d20afa7566dad66fd866fe939a89c09
Parent:     1aaaeabf3622eacd45a94ca9943ea2553b8c34f8
commit 998a43e72d20afa7566dad66fd866fe939a89c09
Author:     Randy Dunlap <randy.dunlap at oracle.com>
AuthorDate: Tue Nov 28 23:40:46 2006 +0000
Commit:     David Woodhouse <dwmw2 at infradead.org>
CommitDate: Tue Nov 28 23:40:46 2006 +0000

    [MTD] Fix printk format warning in physmap. (resources again)
    
    Fix printk format warning:
    drivers/mtd/maps/physmap.c:93: warning: long long unsigned int format, long unsigned int arg (arg 2)
    
    Signed-off-by: Randy Dunlap <randy.dunlap at oracle.com>
    Signed-off-by: Andrew Morton <akpm at osdl.org>
    Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
 drivers/mtd/maps/physmap.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/mtd/maps/physmap.c b/drivers/mtd/maps/physmap.c
index d171776..bb67c50 100644
--- a/drivers/mtd/maps/physmap.c
+++ b/drivers/mtd/maps/physmap.c
@@ -89,7 +89,7 @@ static int physmap_flash_probe(struct pl
 		return -ENODEV;
 
        	printk(KERN_NOTICE "physmap platform flash device: %.8llx at %.8llx\n",
-	    (unsigned long long)dev->resource->end - dev->resource->start + 1,
+	    (unsigned long long)(dev->resource->end - dev->resource->start + 1),
 	    (unsigned long long)dev->resource->start);
 
 	info = kmalloc(sizeof(struct physmap_flash_info), GFP_KERNEL);



More information about the linux-mtd-cvs mailing list