From: Colin Ian King Date: Fri, 18 Aug 2017 15:34:59 +0000 (+0100) Subject: lkdtm: fix spelling mistake: "incremeted" -> "incremented" X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=917c8c2570e1c106ad68ee3d00eb28351b923b0a;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git lkdtm: fix spelling mistake: "incremeted" -> "incremented" Trivial fix to spelling mistake in pr_info message Signed-off-by: Colin Ian King Acked-by: Kees Cook Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/lkdtm_refcount.c b/drivers/misc/lkdtm_refcount.c index 29af0152a337..2b99d448e7fd 100644 --- a/drivers/misc/lkdtm_refcount.c +++ b/drivers/misc/lkdtm_refcount.c @@ -202,7 +202,7 @@ static void check_from_zero(refcount_t *ref) pr_warn("Zero detected: unsafely reset to max\n"); break; default: - pr_info("Fail: zero not detected, incremeted to %d\n", + pr_info("Fail: zero not detected, incremented to %d\n", refcount_read(ref)); } }