diff options
author | Marlies Ruck <marlies.ruck@gmail.com> | 2013-05-16 00:56:49 +0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-20 21:43:10 +0400 |
commit | 93ad5ab50476aa7e2b33aac31f41d0efc9f729d7 (patch) | |
tree | bd31ff7565c5f518a6986c2e1ec3ef8ed9e26e14 | |
parent | d1eef5b602985cffe22d3e7c36792fef8afdc1ad (diff) | |
download | linux-93ad5ab50476aa7e2b33aac31f41d0efc9f729d7.tar.xz |
Staging: Fixes string split across lines in zsmalloc zsmalloc-main
Fixes the following checkpatch warning:
WARNING: quoted string split across lines
Signed-off-by: Marlies Ruck <marlies.ruck@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/zsmalloc/zsmalloc-main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c index f82f7e69c8a5..96467eabcc21 100644 --- a/drivers/staging/zsmalloc/zsmalloc-main.c +++ b/drivers/staging/zsmalloc/zsmalloc-main.c @@ -844,8 +844,7 @@ void zs_destroy_pool(struct zs_pool *pool) for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) { if (class->fullness_list[fg]) { - pr_info("Freeing non-empty class with size " - "%db, fullness group %d\n", + pr_info("Freeing non-empty class with size %db, fullness group %d\n", class->size, fg); } } |