diff options
author | Richard Purdie <rpurdie@openedhand.com> | 2006-10-27 04:09:33 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-11-28 17:27:47 -0500 |
commit | 191876729901d0c8dab8a331f9a1e4b73a56457b (patch) | |
tree | 1e25eb24ac84c09b0300e32eea55b33adc567015 /drivers/mtd/mtdblock.c | |
parent | 90afffc8bd79d130b58acd18f972ce4e00b8e20f (diff) |
[MTD] Allow variable block sizes in mtd_blkdevs
Currently, mtd_blkdevs enforces a block size of 512, even if the drivers
can seemingly request a different size. This patch fixes mtd_blkdevs so
block sizes other than 512 work correctly.
Signed-off-by: Richard Purdie <rpurdie@openedhand.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/mtdblock.c')
-rw-r--r-- | drivers/mtd/mtdblock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/mtdblock.c b/drivers/mtd/mtdblock.c index 04ed34694b14..a052648f6e31 100644 --- a/drivers/mtd/mtdblock.c +++ b/drivers/mtd/mtdblock.c | |||
@@ -348,7 +348,7 @@ static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd) | |||
348 | 348 | ||
349 | dev->mtd = mtd; | 349 | dev->mtd = mtd; |
350 | dev->devnum = mtd->index; | 350 | dev->devnum = mtd->index; |
351 | dev->blksize = 512; | 351 | |
352 | dev->size = mtd->size >> 9; | 352 | dev->size = mtd->size >> 9; |
353 | dev->tr = tr; | 353 | dev->tr = tr; |
354 | 354 | ||
@@ -368,6 +368,7 @@ static struct mtd_blktrans_ops mtdblock_tr = { | |||
368 | .name = "mtdblock", | 368 | .name = "mtdblock", |
369 | .major = 31, | 369 | .major = 31, |
370 | .part_bits = 0, | 370 | .part_bits = 0, |
371 | .blksize = 512, | ||
371 | .open = mtdblock_open, | 372 | .open = mtdblock_open, |
372 | .flush = mtdblock_flush, | 373 | .flush = mtdblock_flush, |
373 | .release = mtdblock_release, | 374 | .release = mtdblock_release, |