aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging
diff options
context:
space:
mode:
authorMarlies Ruck <marlies.ruck@gmail.com>2013-05-16 14:30:39 -0400
committerAlex Shi <alex.shi@linaro.org>2015-05-11 15:41:39 +0800
commit7ac3eafc7692a85e46388680ff06a90af49cbc0b (patch)
treecc023d3fe097333af0fee1c0be2f5511c97d000b /drivers/staging
parent9182148a5315d4b1de68ac74fd54cbb5da5a3703 (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> (cherry picked from commit 596b3dd4c8e172db7806372c9d0347a4e7d28bc5) Signed-off-by: Alex Shi <alex.shi@linaro.org>
Diffstat (limited to 'drivers/staging')
-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 a333d44d0cff..2652dfac0b32 100644
--- a/drivers/staging/zram/zram_drv.c
+++ b/drivers/staging/zram/zram_drv.c
@@ -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;
}