projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6887441
)
[MTD] [MAPS] Fix printk format warning in nettel.c
author
David Woodhouse
<David.Woodhouse@intel.com>
Fri, 9 Jan 2009 14:17:50 +0000
(14:17 +0000)
committer
David Woodhouse
<David.Woodhouse@intel.com>
Fri, 9 Jan 2009 14:17:50 +0000
(14:17 +0000)
MTD size is 64-bit now...
Pointed out by Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
drivers/mtd/maps/nettel.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/maps/nettel.c
b/drivers/mtd/maps/nettel.c
index
df68266
..
a97133e
100644
(file)
--- a/
drivers/mtd/maps/nettel.c
+++ b/
drivers/mtd/maps/nettel.c
@@
-357,8
+357,8
@@
static int __init nettel_init(void)
*intel1par = 0;
}
- printk(KERN_NOTICE "SNAPGEAR: Intel flash device size = %
dK
\n",
-
(intel_mtd->size >> 10));
+ printk(KERN_NOTICE "SNAPGEAR: Intel flash device size = %
lldKiB
\n",
+
(unsigned long long)
(intel_mtd->size >> 10));
intel_mtd->owner = THIS_MODULE;