diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-14 15:44:50 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2016-01-23 14:00:16 -0800 |
commit | fd2a2f20c7a8173acd4858e5178eb40fd7c025b9 (patch) | |
tree | 3c2ac6a43a2a9d9a82a35c5d8f65181643b768a7 /include | |
parent | 54ca3cd594db58d65b3670f2af452c1104b09ac6 (diff) |
mtd: onenand: make onenand_scan_bbt() static
Like was done in commit 17799359e7b3fa6ef4f2bf926cd6821cf7903ecf
("mtd: nand_bbt: make nand_scan_bbt() static") for the NAND code, this
commit makes the onenand_scan_bbt() function static in the OneNAND
code, since it is only used in onenand_bbt.c itself.
Consequently, the EXPORT_SYMBOL() and declaration in bbm.h are also
removed.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mtd/bbm.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/mtd/bbm.h b/include/linux/mtd/bbm.h index 36bb6a503f19..3bf8f954b642 100644 --- a/include/linux/mtd/bbm.h +++ b/include/linux/mtd/bbm.h @@ -166,7 +166,6 @@ struct bbm_info { }; /* OneNAND BBT interface */ -extern int onenand_scan_bbt(struct mtd_info *mtd, struct nand_bbt_descr *bd); extern int onenand_default_bbt(struct mtd_info *mtd); #endif /* __LINUX_MTD_BBM_H */ |