diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-05-10 17:59:00 +0100 |
---|---|---|
committer | James Hogan <jhogan@kernel.org> | 2018-05-14 23:58:23 +0100 |
commit | aae22f16022600bae990ec4c2f2cb997c7393216 (patch) | |
tree | 50212f2d5fc600b5bc427a201ce7b0f31c9bc52a /arch/mips | |
parent | f83e4e1e0ef5c6db4f5c249fe485b2f1029180c5 (diff) | |
download | linux-stable-aae22f16022600bae990ec4c2f2cb997c7393216.tar.gz linux-stable-aae22f16022600bae990ec4c2f2cb997c7393216.tar.bz2 linux-stable-aae22f16022600bae990ec4c2f2cb997c7393216.zip |
MIPS: VPE: Fix spelling mistake: "uneeded" -> "unneeded"
Trivial fix to spelling mistake in pr_warn message text.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: linux-mips@linux-mips.org
Cc: kernel-janitors@vger.kernel.org
Signed-off-by: James Hogan <jhogan@kernel.org>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/vpe.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |