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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2013 17:43:11 +0000 (10:43 -0700)
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>
drivers/staging/zram/zram_drv.c

index e34e3fe0ae2e61f12f7c167ba74588d663dee09a..d628bd30113cf9329e3a0105190a76f8efa5124e 100644 (file)
@@ -304,8 +304,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;
        }
This page took 0.0264 seconds and 5 git commands to generate.