Commit 285ac8dc authored by Colin Ian King's avatar Colin Ian King Committed by Luis Chamberlain

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

There is a spelling mistake in a pr_err error message. Fix it.
Signed-off-by: default avatarColin Ian King <colin.i.king@gmail.com>
Signed-off-by: default avatarLuis Chamberlain <mcgrof@kernel.org>
parent 96dd8754
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment