Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1704667 > unrolled thread

[PATCH] staging: olpc_dcon: Fix coding style issue caught bycheckpatch.pl related to function name in debug print

Started by张树荣 <marvinzhang.kernel@gmail.com>
First post2017-08-05 18:20 +0200
Last post2017-08-05 18:20 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: olpc_dcon: Fix coding style issue caught  bycheckpatch.pl related to function name in debug print 张树荣 <marvinzhang.kernel@gmail.com> - 2017-08-05 18:20 +0200

#1704667 — [PATCH] staging: olpc_dcon: Fix coding style issue caught bycheckpatch.pl related to function name in debug print

From张树荣 <marvinzhang.kernel@gmail.com>
Date2017-08-05 18:20 +0200
Subject[PATCH] staging: olpc_dcon: Fix coding style issue caught bycheckpatch.pl related to function name in debug print
Message-ID<ub9XY-7gl-7@gated-at.bofh.it>
Replace hard-coded function names in strings with "%s", __func__
    in the olpc_dcon.c file. Issue found by checkpatch.pl.

Signed-off-by: Marvin Zhang <MarvinZhang.kernel@gmail.com>
---
 drivers/staging/olpc_dcon/olpc_dcon.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/olpc_dcon/olpc_dcon.c
b/drivers/staging/olpc_dcon/olpc_dcon.c
index f7f3a78..429ca58 100644
--- a/drivers/staging/olpc_dcon/olpc_dcon.c
+++ b/drivers/staging/olpc_dcon/olpc_dcon.c
@@ -456,7 +456,7 @@ static ssize_t dcon_freeze_store(struct device *dev,
  if (ret)
  return ret;

- pr_info("dcon_freeze_store: %lu\n", output);
+ pr_info("%s: %lu\n",__func__, output);

  switch (output) {
  case 0:
-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web