From patchwork Tue Dec 9 11:46:03 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [4/4] UBI WL-Subsys: Improvement in prot tree Date: Tue, 09 Dec 2008 01:46:03 -0000 From: xiaochuan-xu X-Patchwork-Id: 12927 Message-Id: <428823053.23007@cqu.edu.cn> To: linux-mtd@lists.infradead.org >From e3af46580d374fc5da79212c17ef9f0179299bd0 Mon Sep 17 00:00:00 2001 From: Xiaochuan-Xu Date: Tue, 9 Dec 2008 19:27:40 +0800 Subject: [PATCH] Adjust severial macros In order to fulfill the identical function of the currenty prot RB-tree. *_PROTECTION macros are increased respectively Signed-off-by: Xiaochuan-Xu --- drivers/mtd/ubi/wl.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/mtd/ubi/wl.c b/drivers/mtd/ubi/wl.c index 0b1e8c7..603435f 100644 --- a/drivers/mtd/ubi/wl.c +++ b/drivers/mtd/ubi/wl.c @@ -130,9 +130,9 @@ * How many erase cycles are short term, unknown, and long term physical * eraseblocks protected. */ -#define ST_PROTECTION 16 -#define U_PROTECTION 10 -#define LT_PROTECTION 4 +#define ST_PROTECTION 17 +#define U_PROTECTION 11 +#define LT_PROTECTION 5 /* Number of prot lists, must be bigger than 'ST_PROTECTION' */ #define PROT_LISTS_LEN (ST_PROTECTION+1)