diff options
author | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2011-12-23 10:30:16 -0500 |
---|---|---|
committer | David Woodhouse <David.Woodhouse@intel.com> | 2012-01-09 13:25:19 -0500 |
commit | 329ad399a9b3adf52c90637b21ca029fcf7f8795 (patch) | |
tree | 7aa7bb2609c25de7859c3a666f3ea90934609592 /arch/cris | |
parent | 04c601bfa4cb29c968dcb66e44c799c9c01d8675 (diff) |
mtd: introduce mtd_read interface
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'arch/cris')
-rw-r--r-- | arch/cris/arch-v32/drivers/axisflashmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/cris/arch-v32/drivers/axisflashmap.c b/arch/cris/arch-v32/drivers/axisflashmap.c index a2bde3744622..011bddbf073f 100644 --- a/arch/cris/arch-v32/drivers/axisflashmap.c +++ b/arch/cris/arch-v32/drivers/axisflashmap.c | |||
@@ -413,8 +413,8 @@ static int __init init_axis_flash(void) | |||
413 | } while (blockstat && ptable_sector); | 413 | } while (blockstat && ptable_sector); |
414 | #endif | 414 | #endif |
415 | if (ptable_sector) { | 415 | if (ptable_sector) { |
416 | main_mtd->read(main_mtd, ptable_sector, PAGESIZE, | 416 | mtd_read(main_mtd, ptable_sector, PAGESIZE, &len, |
417 | &len, page); | 417 | page); |
418 | ptable_head = &((struct partitiontable *) page)->head; | 418 | ptable_head = &((struct partitiontable *) page)->head; |
419 | } | 419 | } |
420 | 420 | ||