diff options
author | Michael Trimarchi <michael@amarulasolutions.com> | 2022-07-20 18:22:08 +0200 |
---|---|---|
committer | Michael Trimarchi <michael@amarulasolutions.com> | 2022-07-22 13:29:06 +0200 |
commit | bded7d819ff3b8a364ff57ab00a90d6e20bb6850 (patch) | |
tree | 972c4a29141c41b312e6d5d929b8d6fe04a81395 /include/linux | |
parent | 1fde14683c1db602a147aeed799499ef7de902aa (diff) | |
download | u-boot-bded7d819ff3b8a364ff57ab00a90d6e20bb6850.tar.gz u-boot-bded7d819ff3b8a364ff57ab00a90d6e20bb6850.tar.bz2 u-boot-bded7d819ff3b8a364ff57ab00a90d6e20bb6850.zip |
mtd: nand: Export symbol nand_decode_ext_id
In preparation of moving specific nand support that are not jedec
or onfi
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mtd/rawnand.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h index d8141cb4d1..8fb2a43296 100644 --- a/include/linux/mtd/rawnand.h +++ b/include/linux/mtd/rawnand.h @@ -1374,4 +1374,7 @@ int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len, int nand_write_data_op(struct nand_chip *chip, const void *buf, unsigned int len, bool force_8bit); +/* Default extended ID decoding function */ +void nand_decode_ext_id(struct nand_chip *chip); + #endif /* __LINUX_MTD_RAWNAND_H */ |