Staging: Fixes string split across lines in zram
authorMarlies Ruck <marlies.ruck@gmail.com>
Thu, 16 May 2013 18:30:39 +0000 (14:30 -0400)
committerAlex Shi <alex.shi@linaro.org>
Mon, 11 May 2015 07:41:39 +0000 (15:41 +0800)
Fixes the following checkpatch warning in zram_drv.c:
WARNING: quoted string split across lines

Signed-off-by: Marlies Ruck <marlies.ruck@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 596b3dd4c8e172db7806372c9d0347a4e7d28bc5)
Signed-off-by: Alex Shi <alex.shi@linaro.org>
drivers/staging/zram/zram_drv.c

index a333d44d0cffbeaa1412155a197f88f43ed063c9..2652dfac0b3204070220c9a2036db74d04901a35 100644 (file)
@@ -302,8 +302,8 @@ static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec, u32 index,
 
        handle = zs_malloc(meta->mem_pool, clen);
        if (!handle) {
-               pr_info("Error allocating memory for compressed "
-                       "page: %u, size=%zu\n", index, clen);
+               pr_info("Error allocating memory for compressed page: %u, size=%zu\n",
+                       index, clen);
                ret = -ENOMEM;
                goto out;
        }