From 3abbbbd7c3fb4f5aa376800b11fcf0d2975225a7 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Wed, 2 Mar 2016 10:17:10 +0100 Subject: mtd: nand: export nand_check_erased_buf Signed-off-by: Sascha Hauer --- drivers/mtd/nand/nand_base.c | 2 +- include/linux/mtd/nand.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index 7eef287e50..79c1edd5dd 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -957,7 +957,7 @@ EXPORT_SYMBOL(nand_lock); * bitflips_threshold, or -ERROR_CODE for bitflips in excess of the * threshold. */ -static int nand_check_erased_buf(void *buf, int len, int bitflips_threshold) +int nand_check_erased_buf(void *buf, int len, int bitflips_threshold) { const unsigned char *bitmap = buf; int bitflips = 0; diff --git a/include/linux/mtd/nand.h b/include/linux/mtd/nand.h index b787842db5..5beec39b75 100644 --- a/include/linux/mtd/nand.h +++ b/include/linux/mtd/nand.h @@ -50,6 +50,7 @@ extern int nand_check_erased_ecc_chunk(void *data, int datalen, void *ecc, int ecclen, void *extraoob, int extraooblen, int bitflips_threshold); +int nand_check_erased_buf(void *buf, int len, int bitflips_threshold); /* The maximum number of NAND chips in an array */ #define NAND_MAX_CHIPS 8 -- cgit v1.2.3