diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-08 10:43:26 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-03-08 23:21:23 +0100 |
commit | 3b5206f4be9b65d2f0f85b3239cf117a1d0de7ce (patch) | |
tree | 65da673efe457db88180c9bbfa65b18d4eaa4d4a /include | |
parent | 229204da53b31d576fcc1c93a33626943ea8202c (diff) | |
download | linux-stable-3b5206f4be9b65d2f0f85b3239cf117a1d0de7ce.tar.gz linux-stable-3b5206f4be9b65d2f0f85b3239cf117a1d0de7ce.tar.bz2 linux-stable-3b5206f4be9b65d2f0f85b3239cf117a1d0de7ce.zip |
mtd: nand: Move Macronix specific initialization in nand_macronix.c
Move Macronix specific initialization logic into nand_macronix.c. This
is part of the "separate vendor specific code from core" cleanup
process.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mtd/nand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index 97dce42778e9..c7de017c7f4c 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -1099,6 +1099,7 @@ extern const struct nand_manufacturer_ops samsung_nand_manuf_ops; extern const struct nand_manufacturer_ops hynix_nand_manuf_ops; extern const struct nand_manufacturer_ops micron_nand_manuf_ops; extern const struct nand_manufacturer_ops amd_nand_manuf_ops; +extern const struct nand_manufacturer_ops macronix_nand_manuf_ops; int nand_default_bbt(struct mtd_info *mtd); int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs); |