aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Gorski <[email protected]>2011-12-05 16:08:05 +0100
committerDavid Woodhouse <[email protected]>2012-01-09 18:13:28 +0000
commit35096cb54be6ff3a366e28492d4cbf21ffe3efdd (patch)
tree6bae37cba465f9f86be127963089eaa190a90036
parent47882d78250a8b92a9837d14bab32915622a9f12 (diff)
mtd: maps: bcm963xx-flash: fix word order for spare partition
Signed-off-by: Jonas Gorski <[email protected]> Acked-by: Florian Fainelli <[email protected]> Signed-off-by: Artem Bityutskiy <[email protected]> Signed-off-by: David Woodhouse <[email protected]>
-rw-r--r--drivers/mtd/maps/bcm963xx-flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/maps/bcm963xx-flash.c b/drivers/mtd/maps/bcm963xx-flash.c
index 56927f5302c1..bcdb6dd3f131 100644
--- a/drivers/mtd/maps/bcm963xx-flash.c
+++ b/drivers/mtd/maps/bcm963xx-flash.c
@@ -145,7 +145,7 @@ static int parse_cfe_partitions(struct mtd_info *master,
(long unsigned int)(parts[i].offset),
(long unsigned int)(parts[i].size));
- printk(KERN_INFO PFX "Spare partition is %x offset and length %x\n",
+ printk(KERN_INFO PFX "Spare partition is offset %x and length %x\n",
spareaddr, sparelen);
*pparts = parts;
vfree(buf);