From: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> Date: Sun, 3 Nov 2019 20:00:30 +0100 * Simplify a message construction in a Python script rule for the semantic patch language. * Delete also a duplicate space character then. Fixes: dfd32cad146e3624970eee9329e99d2c6ef751b3 ("dma-mapping: remove dma_zalloc_coherent()") Signed-off-by: Markus Elfring <elfring@xxxxxxxxxxxxxxxxxxxxx> --- scripts/coccinelle/api/alloc/zalloc-simple.cocci | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/coccinelle/api/alloc/zalloc-simple.cocci b/scripts/coccinelle/api/alloc/zalloc-simple.cocci index 26cda3f48f01..c14eae1f3010 100644 --- a/scripts/coccinelle/api/alloc/zalloc-simple.cocci +++ b/scripts/coccinelle/api/alloc/zalloc-simple.cocci @@ -217,8 +217,10 @@ p << r2.p; x << r2.x; @@ -msg="WARNING: dma_alloc_coherent use in %s already zeroes out memory, so memset is not needed" % (x) -coccilib.report.print_report(p[0], msg) +coccilib.report.print_report(p[0], + "WARNING: dma_alloc_coherent use in " + + x + + " already zeroes out memory. Thus memset is not needed.") //----------------------------------------------------------------- @r3 depends on org || report@ -- 2.23.0