kernel: Fix spelling mistake "compresser" -> "compressor"

There is a spelling mistake in a pr_err error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
This commit is contained in:
Colin Ian King 2022-01-13 09:24:17 +00:00 committed by Luis Chamberlain
parent 96dd875488
commit 285ac8dca4
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ static ssize_t module_gzip_decompress(struct load_info *info,
rc = zlib_inflateInit2(&s, -MAX_WBITS);
if (rc != Z_OK) {
pr_err("failed to initialize decompresser: %d\n", rc);
pr_err("failed to initialize decompressor: %d\n", rc);
retval = -EINVAL;
goto out;
}