diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 16:45:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 16:45:22 -0500 |
commit | 7b3480f8b701170c046e1ed362946f5f0d005e13 (patch) | |
tree | bd25e05b4f35699689b485480dddf24f840f80af /arch/cris | |
parent | 1c8106528aa6bf16b3f457de80df1cf7462a49a4 (diff) | |
parent | b60ef99c1164a8ad346cf41f9e71acfffb6d25a6 (diff) |
Merge tag 'for-linus-3.3' of git://git.infradead.org/mtd-2.6
MTD pull for 3.3
* tag 'for-linus-3.3' of git://git.infradead.org/mtd-2.6: (113 commits)
mtd: Fix dependency for MTD_DOC200x
mtd: do not use mtd->block_markbad directly
logfs: do not use 'mtd->block_isbad' directly
mtd: introduce mtd_can_have_bb helper
mtd: do not use mtd->suspend and mtd->resume directly
mtd: do not use mtd->lock, unlock and is_locked directly
mtd: do not use mtd->sync directly
mtd: harmonize mtd_writev usage
mtd: do not use mtd->lock_user_prot_reg directly
mtd: mtd->write_user_prot_reg directly
mtd: do not use mtd->read_*_prot_reg directly
mtd: do not use mtd->get_*_prot_info directly
mtd: do not use mtd->read_oob directly
mtd: mtdoops: do not use mtd->panic_write directly
romfs: do not use mtd->get_unmapped_area directly
mtd: do not use mtd->get_unmapped_area directly
mtd: do use mtd->point directly
mtd: introduce mtd_has_oob helper
mtd: mtdcore: export symbols cleanup
mtd: clean-up the default_mtd_writev function
...
Fix up trivial edit/remove conflict in drivers/staging/spectra/lld_mtd.c
Diffstat (limited to 'arch/cris')
-rw-r--r-- | arch/cris/arch-v32/drivers/axisflashmap.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/cris/arch-v32/drivers/axisflashmap.c b/arch/cris/arch-v32/drivers/axisflashmap.c index a2bde3744622..b34438e026be 100644 --- a/arch/cris/arch-v32/drivers/axisflashmap.c +++ b/arch/cris/arch-v32/drivers/axisflashmap.c | |||
@@ -404,8 +404,7 @@ static int __init init_axis_flash(void) | |||
404 | */ | 404 | */ |
405 | int blockstat; | 405 | int blockstat; |
406 | do { | 406 | do { |
407 | blockstat = main_mtd->block_isbad(main_mtd, | 407 | blockstat = mtd_block_isbad(main_mtd, ptable_sector); |
408 | ptable_sector); | ||
409 | if (blockstat < 0) | 408 | if (blockstat < 0) |
410 | ptable_sector = 0; /* read error */ | 409 | ptable_sector = 0; /* read error */ |
411 | else if (blockstat) | 410 | else if (blockstat) |
@@ -413,8 +412,8 @@ static int __init init_axis_flash(void) | |||
413 | } while (blockstat && ptable_sector); | 412 | } while (blockstat && ptable_sector); |
414 | #endif | 413 | #endif |
415 | if (ptable_sector) { | 414 | if (ptable_sector) { |
416 | main_mtd->read(main_mtd, ptable_sector, PAGESIZE, | 415 | mtd_read(main_mtd, ptable_sector, PAGESIZE, &len, |
417 | &len, page); | 416 | page); |
418 | ptable_head = &((struct partitiontable *) page)->head; | 417 | ptable_head = &((struct partitiontable *) page)->head; |
419 | } | 418 | } |
420 | 419 | ||