diff options
author | Marlies Ruck <marlies.ruck@gmail.com> | 2013-05-16 14:30:39 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 10:43:11 -0700 |
commit | 596b3dd4c8e172db7806372c9d0347a4e7d28bc5 (patch) | |
tree | f666c7149ef86d5e62a17fb99a38cee4bf4f7777 /drivers/staging/zram | |
parent | 0f14a20e4586bff80575b4806382d43e0d543cda (diff) | |
download | lwn-596b3dd4c8e172db7806372c9d0347a4e7d28bc5.tar.gz lwn-596b3dd4c8e172db7806372c9d0347a4e7d28bc5.zip |
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>
Diffstat (limited to 'drivers/staging/zram')
-rw-r--r-- | drivers/staging/zram/zram_drv.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |