mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
BACKPORT: Staging: Fixes string split across lines in zram
(cherry pick from commit 596b3dd4c8
)
Fixes the following checkpatch warning in zram_drv.c:
WARNING: quoted string split across lines
Bug: 25951511
Change-Id: I015e30679c49c0933d412327e456be641e4d062f
Signed-off-by: Marlies Ruck <marlies.ruck@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
3f4197d85d
commit
68747a29ed
1 changed files with 2 additions and 2 deletions
|
@ -491,8 +491,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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue