From: Colin Ian King <[email protected]>
Trivial fix to spelling mistake in pr_warn message text
Signed-off-by: Colin Ian King <[email protected]>
---
arch/mips/kernel/vpe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/kernel/vpe.c b/arch/mips/kernel/vpe.c
index 544ea21bfef9..0bef238d2c0c 100644
--- a/arch/mips/kernel/vpe.c
+++ b/arch/mips/kernel/vpe.c
@@ -872,7 +872,7 @@ static ssize_t vpe_write(struct file *file, const char __user *buffer,
return -ENODEV;
if ((count + v->len) > v->plen) {
- pr_warn("VPE loader: elf size too big. Perhaps strip uneeded symbols\n");
+ pr_warn("VPE loader: elf size too big. Perhaps strip unneeded symbols\n");
return -ENOMEM;
}
--
2.17.0
On Thu, May 10, 2018 at 05:59:00PM +0100, Colin King wrote:
> From: Colin Ian King <[email protected]>
>
> Trivial fix to spelling mistake in pr_warn message text
>
> Signed-off-by: Colin Ian King <[email protected]>
> - pr_warn("VPE loader: elf size too big. Perhaps strip uneeded symbols\n");
> + pr_warn("VPE loader: elf size too big. Perhaps strip unneeded symbols\n");
Applied for 4.18
thanks
James