提交 596b3dd4 编写于 作者: M Marlies Ruck 提交者: Greg Kroah-Hartman

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: NMarlies Ruck <marlies.ruck@gmail.com>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
上级 0f14a20e
...@@ -304,8 +304,8 @@ static int zram_bvec_write(struct zram *zram, struct bio_vec *bvec, u32 index, ...@@ -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); handle = zs_malloc(meta->mem_pool, clen);
if (!handle) { if (!handle) {
pr_info("Error allocating memory for compressed " pr_info("Error allocating memory for compressed page: %u, size=%zu\n",
"page: %u, size=%zu\n", index, clen); index, clen);
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册