diff options
author | Boris Brezillon <boris.brezillon@bootlin.com> | 2018-09-06 14:05:15 +0200 |
---|---|---|
committer | Miquel Raynal <miquel.raynal@bootlin.com> | 2018-10-03 11:12:25 +0200 |
commit | 59ac276f22270fb2094910f9a734c17f41c25e70 (patch) | |
tree | ca9974cf0daf3a3e926393797d8264badd76e761 /include/linux/mtd | |
parent | 00ad378f304a091ab2e2df5f944892a6ed558610 (diff) | |
download | linux-59ac276f22270fb2094910f9a734c17f41c25e70.tar.gz linux-59ac276f22270fb2094910f9a734c17f41c25e70.tar.bz2 linux-59ac276f22270fb2094910f9a734c17f41c25e70.zip |
mtd: rawnand: Pass a nand_chip object to nand_release()
Let's make the raw NAND API consistent by patching all helpers to
take a nand_chip object instead of an mtd_info one.
Now is nand_release()'s turn.
Signed-off-by: Boris Brezillon <boris.brezillon@bootlin.com>
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/rawnand.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index 733b228d94a5..e9c59f0624ad 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -1739,7 +1739,7 @@ int nand_write_data_op(struct nand_chip *chip, const void *buf, */ void nand_cleanup(struct nand_chip *chip); /* Unregister the MTD device and calls nand_cleanup() */ -void nand_release(struct mtd_info *mtd); +void nand_release(struct nand_chip *chip); /* Default extended ID decoding function */ void nand_decode_ext_id(struct nand_chip *chip); |