aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/bcm63xxpart.c
diff options
context:
space:
mode:
authorJonas Gorski <jonas.gorski@gmail.com>2012-11-12 10:52:51 +0100
committerArtem Bityutskiy <artem.bityutskiy@linux.intel.com>2012-11-21 17:15:06 +0200
commit60768368b76b2794b088bb66fbd07557a10fa77e (patch)
tree34773fbd7d8e987a768191b56655a5e3e181092a /drivers/mtd/bcm63xxpart.c
parentmtd: bcm63xxpart: move the last curpart++ to its correct place (diff)
downloadlinux-dev-60768368b76b2794b088bb66fbd07557a10fa77e.tar.xz
linux-dev-60768368b76b2794b088bb66fbd07557a10fa77e.zip
mtd: bcm63xxpart: use correct printk format for partitions
Use ll to be able to remove the casts. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com> Reviewed-by: Florian Fainelli <florian@openwrt.org> Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/bcm63xxpart.c')
-rw-r--r--drivers/mtd/bcm63xxpart.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/mtd/bcm63xxpart.c b/drivers/mtd/bcm63xxpart.c
index 44cba4eba34c..6eeb84c81bc2 100644
--- a/drivers/mtd/bcm63xxpart.c
+++ b/drivers/mtd/bcm63xxpart.c
@@ -198,9 +198,8 @@ static int bcm63xx_parse_cfe_partitions(struct mtd_info *master,
parts[curpart].size = master->size - cfelen - nvramlen;
for (i = 0; i < nrparts; i++)
- pr_info("Partition %d is %s offset %lx and length %lx\n", i,
- parts[i].name, (long unsigned int)(parts[i].offset),
- (long unsigned int)(parts[i].size));
+ pr_info("Partition %d is %s offset %llx and length %llx\n", i,
+ parts[i].name, parts[i].offset, parts[i].size);
pr_info("Spare partition is offset %x and length %x\n", spareaddr,
sparelen);