Commit 93ad5ab5 authored by Marlies Ruck's avatar Marlies Ruck Committed by Greg Kroah-Hartman

Staging: Fixes string split across lines in zsmalloc zsmalloc-main

Fixes the following checkpatch warning:
WARNING: quoted string split across lines
Signed-off-by: default avatarMarlies Ruck <marlies.ruck@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d1eef5b6
...@@ -844,8 +844,7 @@ void zs_destroy_pool(struct zs_pool *pool) ...@@ -844,8 +844,7 @@ void zs_destroy_pool(struct zs_pool *pool)
for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) { for (fg = 0; fg < _ZS_NR_FULLNESS_GROUPS; fg++) {
if (class->fullness_list[fg]) { if (class->fullness_list[fg]) {
pr_info("Freeing non-empty class with size " pr_info("Freeing non-empty class with size %db, fullness group %d\n",
"%db, fullness group %d\n",
class->size, fg); class->size, fg);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment