diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-05-02 12:29:13 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-05-15 12:00:36 +0200 |
commit | 0b2f93dc0099e3b8a739b8918eeb995e12520940 (patch) | |
tree | cb99ddcfd6635ff2adc8e8dafccd32e2428ae256 /drivers/mtd | |
parent | mtd: nand: Add Mediatek machine dependency (diff) | |
download | linux-0b2f93dc0099e3b8a739b8918eeb995e12520940.tar.xz linux-0b2f93dc0099e3b8a739b8918eeb995e12520940.zip |
mtd: nand: jz4780: Use mtd_set_ooblayout() to set the ooblayout
The mtd_set_ooblayout() accesor has been added to hide internals of
mtd_info and ease future refactoring. Call mtd_set_ooblayout() instead of
directly accessing mtd->ooblayout.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Harvey Hunt <harveyhuntnexus@gmail.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/jz4780_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/jz4780_nand.c b/drivers/mtd/nand/jz4780_nand.c index a39bb70175ee..8bc835f71b26 100644 --- a/drivers/mtd/nand/jz4780_nand.c +++ b/drivers/mtd/nand/jz4780_nand.c @@ -205,7 +205,7 @@ static int jz4780_nand_init_ecc(struct jz4780_nand_chip *nand, struct device *de return -EINVAL; } - mtd->ooblayout = &nand_ooblayout_lp_ops; + mtd_set_ooblayout(mtd, &nand_ooblayout_lp_ops); return 0; } |