aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/ubi/ubi.h
diff options
context:
space:
mode:
authorArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-01-30 11:37:33 -0500
committerArtem Bityutskiy <Artem.Bityutskiy@nokia.com>2011-03-08 03:12:48 -0500
commit30b542ef453e6832ff682170b2db95d7bca2fe70 (patch)
treea74ccffb6a4eebb6ec8f9d3aa2d152700f995830 /drivers/mtd/ubi/ubi.h
parent10ac27970274e9094aee84a6452a25bf1b7e59e1 (diff)
UBI: incorporate maximum write size
Incorporate MTD write buffer size into UBI device information because UBIFS needs this field. UBI does not use it ATM, just provides to upper layers in 'struct ubi_device_info'. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/ubi.h')
-rw-r--r--drivers/mtd/ubi/ubi.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/ubi.h b/drivers/mtd/ubi/ubi.h
index 0b0149c41fe3..b78994330ebc 100644
--- a/drivers/mtd/ubi/ubi.h
+++ b/drivers/mtd/ubi/ubi.h
@@ -381,6 +381,8 @@ struct ubi_wl_entry;
381 * @bad_allowed: whether the MTD device admits of bad physical eraseblocks or 381 * @bad_allowed: whether the MTD device admits of bad physical eraseblocks or
382 * not 382 * not
383 * @nor_flash: non-zero if working on top of NOR flash 383 * @nor_flash: non-zero if working on top of NOR flash
384 * @max_write_size: maximum amount of bytes the underlying flash can write at a
385 * time (MTD write buffer size)
384 * @mtd: MTD device descriptor 386 * @mtd: MTD device descriptor
385 * 387 *
386 * @peb_buf1: a buffer of PEB size used for different purposes 388 * @peb_buf1: a buffer of PEB size used for different purposes
@@ -464,6 +466,7 @@ struct ubi_device {
464 int vid_hdr_shift; 466 int vid_hdr_shift;
465 unsigned int bad_allowed:1; 467 unsigned int bad_allowed:1;
466 unsigned int nor_flash:1; 468 unsigned int nor_flash:1;
469 int max_write_size;
467 struct mtd_info *mtd; 470 struct mtd_info *mtd;
468 471
469 void *peb_buf1; 472 void *peb_buf1;