diff options
author | Brian Norris <computersforpeace@gmail.com> | 2011-08-30 21:45:40 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@intel.com> | 2011-09-11 08:28:59 -0400 |
commit | 0612b9ddc2eeda014dd805c87c752b342d8f80f0 (patch) | |
tree | 7691ee548ab6da1e7df946a75abd96a814208d8e /drivers/mtd/nand/sm_common.c | |
parent | 905c6bcdb42616da717a9bd6c0c5870dbd90b09e (diff) |
mtd: rename MTD_OOB_* to MTD_OPS_*
These modes are not necessarily for OOB only. Particularly, MTD_OOB_RAW
affected operations on in-band page data as well. To clarify these
options and to emphasize that their effect is applied per-operation, we
change the primary prefix to MTD_OPS_.
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@intel.com>
Diffstat (limited to 'drivers/mtd/nand/sm_common.c')
-rw-r--r-- | drivers/mtd/nand/sm_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/sm_common.c b/drivers/mtd/nand/sm_common.c index b6332e83b289..2c438ef53cf5 100644 --- a/drivers/mtd/nand/sm_common.c +++ b/drivers/mtd/nand/sm_common.c | |||
@@ -47,7 +47,7 @@ static int sm_block_markbad(struct mtd_info *mtd, loff_t ofs) | |||
47 | 47 | ||
48 | /* As long as this function is called on erase block boundaries | 48 | /* As long as this function is called on erase block boundaries |
49 | it will work correctly for 256 byte nand */ | 49 | it will work correctly for 256 byte nand */ |
50 | ops.mode = MTD_OOB_PLACE; | 50 | ops.mode = MTD_OPS_PLACE_OOB; |
51 | ops.ooboffs = 0; | 51 | ops.ooboffs = 0; |
52 | ops.ooblen = mtd->oobsize; | 52 | ops.ooblen = mtd->oobsize; |
53 | ops.oobbuf = (void *)&oob; | 53 | ops.oobbuf = (void *)&oob; |