diff options
author | Michael Trimarchi <michael@amarulasolutions.com> | 2022-07-20 18:22:11 +0200 |
---|---|---|
committer | Michael Trimarchi <michael@amarulasolutions.com> | 2022-07-22 13:29:06 +0200 |
commit | 3de2cdb71e68140425315e79b1643603e8f33517 (patch) | |
tree | a0a8e80f768167a5c393eb63a1f9189a82458373 /include/linux/mtd | |
parent | 2811ed2fb0349dd55b07407b19fbcf1a85c9ac4b (diff) | |
download | u-boot-3de2cdb71e68140425315e79b1643603e8f33517.tar.gz u-boot-3de2cdb71e68140425315e79b1643603e8f33517.tar.bz2 u-boot-3de2cdb71e68140425315e79b1643603e8f33517.zip |
mtd: nand: Move Toshiba specific init/detection logic in nand_toshiba.c
Upstream linux commit 9b2d61f80b060c.
Move Toshiba specific initialization and detection logic into
nand_toshiba.c. This is part of the "separate vendor specific code from
core" cleanup process.
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Diffstat (limited to 'include/linux/mtd')
-rw-r--r-- | include/linux/mtd/rawnand.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index d35277d187..73abb34016 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -1158,6 +1158,7 @@ struct nand_manufacturers { extern struct nand_flash_dev nand_flash_ids[]; extern struct nand_manufacturers nand_manuf_ids[]; +extern const struct nand_manufacturer_ops toshiba_nand_manuf_ops; extern const struct nand_manufacturer_ops samsung_nand_manuf_ops; extern const struct nand_manufacturer_ops hynix_nand_manuf_ops; |