io_uring: ensure that SQPOLL thread is started for exit
[linux-2.6-microblaze.git] / fs / pstore / platform.c
index 32f64ab..d963ae7 100644 (file)
@@ -269,7 +269,7 @@ static int pstore_compress(const void *in, void *out,
 {
        int ret;
 
-       if (!IS_ENABLED(CONFIG_PSTORE_COMPRESSION))
+       if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS))
                return -EINVAL;
 
        ret = crypto_comp_compress(tfm, in, inlen, out, &outlen);
@@ -671,7 +671,7 @@ static void decompress_record(struct pstore_record *record)
        int unzipped_len;
        char *unzipped, *workspace;
 
-       if (!IS_ENABLED(CONFIG_PSTORE_COMPRESSION) || !record->compressed)
+       if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !record->compressed)
                return;
 
        /* Only PSTORE_TYPE_DMESG support compression. */