mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH 1/2] mtd: Fix writesize parameter value
@ 2014-06-09 15:14 Herve Codina
  2014-06-09 15:14 ` [PATCH 2/2] mtd: fix mtd erasesize Herve Codina
  2014-06-10  6:39 ` [PATCH 1/2] mtd: Fix writesize parameter value Sascha Hauer
  0 siblings, 2 replies; 3+ messages in thread
From: Herve Codina @ 2014-06-09 15:14 UTC (permalink / raw)
  To: barebox; +Cc: Herve Codina

Signed-off-by: Herve Codina <Herve.CODINA@celad.com>
---
 drivers/mtd/core.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/core.c b/drivers/mtd/core.c
index d954f72..d3e7763 100644
--- a/drivers/mtd/core.c
+++ b/drivers/mtd/core.c
@@ -403,7 +403,7 @@ int add_mtd_device(struct mtd_info *mtd, char *devname, int device_id)
 	if (IS_ENABLED(CONFIG_PARAMETER)) {
 		dev_add_param_int_ro(&mtd->class_dev, "size", mtd->size, "%llu");
 		dev_add_param_int_ro(&mtd->class_dev, "erasesize", mtd->erasesize, "%u");
-		dev_add_param_int_ro(&mtd->class_dev, "writesize", mtd->oobsize, "%u");
+		dev_add_param_int_ro(&mtd->class_dev, "writesize", mtd->writesize, "%u");
 		dev_add_param_int_ro(&mtd->class_dev, "oobsize", mtd->oobsize, "%u");
 	}
 
-- 
1.7.9.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-06-10  6:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-09 15:14 [PATCH 1/2] mtd: Fix writesize parameter value Herve Codina
2014-06-09 15:14 ` [PATCH 2/2] mtd: fix mtd erasesize Herve Codina
2014-06-10  6:39 ` [PATCH 1/2] mtd: Fix writesize parameter value Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox