diff options
author | Scott Wood | 2016-05-30 13:57:56 -0500 |
---|---|---|
committer | Scott Wood | 2016-06-03 20:27:48 -0500 |
commit | 17cb4b8f327eb983cef7c510fcf77f1635a00e48 (patch) | |
tree | bbe2c31df8189cfb1e02a60e6ca803509169f71d /cmd/nand.c | |
parent | b616d9b0a708eb90eb474e1b6ec6dfe4c48a1678 (diff) |
mtd: nand: Add+use mtd_to/from_nand and nand_get/set_controller_data
These functions are part of the Linux 4.6 sync. They are being added
before the main sync patch in order to make it easier to address the
issue across all NAND drivers (many/most of which do not closely track
their Linux counterparts) separately from other merge issues.
Signed-off-by: Scott Wood <oss@buserror.net>
Diffstat (limited to 'cmd/nand.c')
-rw-r--r-- | cmd/nand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/nand.c b/cmd/nand.c index f1d5a1161d1..583a18f341a 100644 --- a/cmd/nand.c +++ b/cmd/nand.c @@ -159,7 +159,7 @@ static void do_nand_status(struct mtd_info *mtd) ulong off; int last_status = -1; - struct nand_chip *nand_chip = mtd->priv; + struct nand_chip *nand_chip = mtd_to_nand(mtd); /* check the WP bit */ nand_chip->cmdfunc(mtd, NAND_CMD_STATUS, -1, -1); printf("device is %swrite protected\n", @@ -285,7 +285,7 @@ usage: static void nand_print_and_set_info(int idx) { struct mtd_info *mtd = nand_info[idx]; - struct nand_chip *chip = mtd->priv; + struct nand_chip *chip = mtd_to_nand(mtd); printf("Device %d: ", idx); if (chip->numchips > 1) |