projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f14a20
)
Staging: Fixes string split across lines in zram
author
Marlies Ruck
<marlies.ruck@gmail.com>
Thu, 16 May 2013 18:30:39 +0000
(14:30 -0400)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Mon, 20 May 2013 17:43:11 +0000
(10:43 -0700)
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>
drivers/staging/zram/zram_drv.c
patch
|
blob
|
history
diff --git
a/drivers/staging/zram/zram_drv.c
b/drivers/staging/zram/zram_drv.c
index e34e3fe0ae2e61f12f7c167ba74588d663dee09a..d628bd30113cf9329e3a0105190a76f8efa5124e 100644
(file)
--- 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;
}