summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarlies Ruck <marlies.ruck@gmail.com>2013-05-16 14:30:39 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-05-20 10:43:11 -0700
commit596b3dd4c8e172db7806372c9d0347a4e7d28bc5 (patch)
treef666c7149ef86d5e62a17fb99a38cee4bf4f7777
parent0f14a20e4586bff80575b4806382d43e0d543cda (diff)
Staging: Fixes string split across lines in zram
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>
-rw-r--r--drivers/staging/zram/zram_drv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/zram/zram_drv.c b/drivers/staging/zram/zram_drv.c
index e34e3fe0ae2e..d628bd30113c 100644
--- a/drivers/staging/zram/zram_drv.c
+++ b/drivers/staging/zram/zram_drv.c
@@ -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;
}