[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1458873715-3670-5-git-send-email-baiyaowei@cmss.chinamobile.com>
Date: Fri, 25 Mar 2016 10:41:54 +0800
From: Yaowei Bai <baiyaowei@...s.chinamobile.com>
To: dwmw2@...radead.org, computersforpeace@...il.com, richard@....at,
boris.brezillon@...e-electrons.com
Cc: linux-mtd@...ts.infradead.org, linux-kernel@...r.kernel.org,
baiyaowei@...s.chinamobile.com
Subject: [PATCH 4/5] drivers/mtd: mtd_nand_has_bch can be boolean
This patch makes mtd_nand_has_bch return bool to improve readability
due to this particular function only using either one or zero as its return
value.
No functional change.
Signed-off-by: Yaowei Bai <baiyaowei@...s.chinamobile.com>
---
include/linux/mtd/nand_bch.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/linux/mtd/nand_bch.h b/include/linux/mtd/nand_bch.h
index fb0bc34..8778c79 100644
--- a/include/linux/mtd/nand_bch.h
+++ b/include/linux/mtd/nand_bch.h
@@ -16,7 +16,7 @@ struct nand_bch_control;
#if defined(CONFIG_MTD_NAND_ECC_BCH)
-static inline int mtd_nand_has_bch(void) { return 1; }
+static inline bool mtd_nand_has_bch(void) { return true; }
/*
* Calculate BCH ecc code
@@ -42,7 +42,7 @@ void nand_bch_free(struct nand_bch_control *nbc);
#else /* !CONFIG_MTD_NAND_ECC_BCH */
-static inline int mtd_nand_has_bch(void) { return 0; }
+static inline bool mtd_nand_has_bch(void) { return false; }
static inline int
nand_bch_calculate_ecc(struct mtd_info *mtd, const u_char *dat,
--
1.9.1
Powered by blists - more mailing lists