diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-10-29 09:28:00 +0300 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2017-11-13 23:39:16 +0300 |
commit | a5929b64fa2bf381ac3dc57f4e7daa7f04e99dc0 (patch) | |
tree | 617e1bb67a43c401c5151ba2f63d683c95bbc154 /drivers/mtd | |
parent | cb9e20633d81290acefb9ec1af281ff4c650fbde (diff) | |
download | linux-a5929b64fa2bf381ac3dc57f4e7daa7f04e99dc0.tar.xz |
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>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/mtdswap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdswap.c b/drivers/mtd/mtdswap.c index 7d9080e33865..f07492c6f4b2 100644 --- a/drivers/mtd/mtdswap.c +++ b/drivers/mtd/mtdswap.c @@ -50,7 +50,7 @@ * Number of free eraseblocks below which GC can also collect low frag * 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 @@ -805,7 +805,7 @@ static int __mtdswap_choose_gc_tree(struct mtdswap_dev *d) { int idx, stopat; - if (TREE_COUNT(d, CLEAN) < LOW_FRAG_GC_TRESHOLD) + if (TREE_COUNT(d, CLEAN) < LOW_FRAG_GC_THRESHOLD) stopat = MTDSWAP_LOWFRAG; else stopat = MTDSWAP_HIFRAG; |