diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-06-08 10:30:18 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2017-03-08 23:21:20 +0100 |
commit | 01389b6bd2f4f7649cdbb4a99a15d9e0c05d6f8c (patch) | |
tree | 617d47f7783753087e3ca8d35aea894bce610ff7 /include | |
parent | mtd: nand: Move Samsung specific init/detection logic in nand_samsung.c (diff) | |
download | linux-01389b6bd2f4f7649cdbb4a99a15d9e0c05d6f8c.tar.xz linux-01389b6bd2f4f7649cdbb4a99a15d9e0c05d6f8c.zip |
mtd: nand: Move Hynix specific init/detection logic in nand_hynix.c
Move Hynix specific initialization and detection logic into
nand_hynix.c. This is part of the "separate vendor specific code from
core" cleanup process.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Richard Weinberger <richard@nod.at>
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 2f83cb55392f..74e3a231cb56 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -1115,6 +1115,7 @@ nand_manufacturer_name(const struct nand_manufacturer *manufacturer) extern struct nand_flash_dev nand_flash_ids[]; extern const struct nand_manufacturer_ops samsung_nand_manuf_ops; +extern const struct nand_manufacturer_ops hynix_nand_manuf_ops; int nand_default_bbt(struct mtd_info *mtd); int nand_markbad_bbt(struct mtd_info *mtd, loff_t offs); |