From: Marlies Ruck Date: Thu, 16 May 2013 18:30:39 +0000 (-0400) Subject: Staging: Fixes string split across lines in zram X-Git-Tag: next-20130521~23^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=596b3dd4c8e172db7806372c9d0347a4e7d28bc5;p=karo-tx-linux.git 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 Signed-off-by: Greg Kroah-Hartman --- 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; }