mtd: mtdswap: fix spelling mistake: 'TRESHOLD' -> 'THRESHOLD'

Trivial fix to spelling mistakes.

Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
Arvind Yadav 2017-10-29 11:58:00 +05:30 committed by Richard Weinberger
parent cb9e20633d
commit a5929b64fa

View File

@ -50,7 +50,7 @@
* Number of free eraseblocks below which GC can also collect low frag * Number of free eraseblocks below which GC can also collect low frag
* blocks. * blocks.
*/ */
#define LOW_FRAG_GC_TRESHOLD 5 #define LOW_FRAG_GC_THRESHOLD 5
/* /*
* Wear level cost amortization. We want to do wear leveling on the background * Wear level cost amortization. We want to do wear leveling on the background
@ -805,7 +805,7 @@ static int __mtdswap_choose_gc_tree(struct mtdswap_dev *d)
{ {
int idx, stopat; int idx, stopat;
if (TREE_COUNT(d, CLEAN) < LOW_FRAG_GC_TRESHOLD) if (TREE_COUNT(d, CLEAN) < LOW_FRAG_GC_THRESHOLD)
stopat = MTDSWAP_LOWFRAG; stopat = MTDSWAP_LOWFRAG;
else else
stopat = MTDSWAP_HIFRAG; stopat = MTDSWAP_HIFRAG;