summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHe Zhe <zhe.he@windriver.com>2018-08-17 10:42:29 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-09-18 10:07:23 -0400
commit39724d56a0a83d8e3822913583b50d62996800cc (patch)
treee21ee3bb590ffb75e9cf8a7dd875dbbb164c63ac
parent1bd54d851f50dea6af30c3e6ff4f3e9aab5558f9 (diff)
kgdboc: Change printk to the right fashion
pr_* is preferred according to scripts/checkpatch.pl. Cc: jason.wessel@windriver.com Cc: gregkh@linuxfoundation.org Cc: jslaby@suse.com Signed-off-by: He Zhe <zhe.he@windriver.com> Acked-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/serial/kgdboc.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/drivers/tty/serial/kgdboc.c b/drivers/tty/serial/kgdboc.c
index f4d0ef695225..371357d5e216 100644
--- a/drivers/tty/serial/kgdboc.c
+++ b/drivers/tty/serial/kgdboc.c
@@ -8,6 +8,9 @@
8 * 8 *
9 * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc. 9 * 2007-2008 (c) Jason Wessel - Wind River Systems, Inc.
10 */ 10 */
11
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
11#include <linux/kernel.h> 14#include <linux/kernel.h>
12#include <linux/ctype.h> 15#include <linux/ctype.h>
13#include <linux/kgdb.h> 16#include <linux/kgdb.h>
@@ -131,12 +134,12 @@ static void kgdboc_unregister_kbd(void)
131static int kgdboc_option_setup(char *opt) 134static int kgdboc_option_setup(char *opt)
132{ 135{
133 if (!opt) { 136 if (!opt) {
134 pr_err("kgdboc: config string not provided\n"); 137 pr_err("config string not provided\n");
135 return -EINVAL; 138 return -EINVAL;
136 } 139 }
137 140
138 if (strlen(opt) >= MAX_CONFIG_LEN) { 141 if (strlen(opt) >= MAX_CONFIG_LEN) {
139 printk(KERN_ERR "kgdboc: config string too long\n"); 142 pr_err("config string too long\n");
140 return -ENOSPC; 143 return -ENOSPC;
141 } 144 }
142 strcpy(config, opt); 145 strcpy(config, opt);
@@ -253,7 +256,7 @@ static int param_set_kgdboc_var(const char *kmessage,
253 int len = strlen(kmessage); 256 int len = strlen(kmessage);
254 257
255 if (len >= MAX_CONFIG_LEN) { 258 if (len >= MAX_CONFIG_LEN) {
256 printk(KERN_ERR "kgdboc: config string too long\n"); 259 pr_err("config string too long\n");
257 return -ENOSPC; 260 return -ENOSPC;
258 } 261 }
259 262
@@ -264,8 +267,7 @@ static int param_set_kgdboc_var(const char *kmessage,
264 } 267 }
265 268
266 if (kgdb_connected) { 269 if (kgdb_connected) {
267 printk(KERN_ERR 270 pr_err("Cannot reconfigure while KGDB is connected.\n");
268 "kgdboc: Cannot reconfigure while KGDB is connected.\n");
269 271
270 return -EBUSY; 272 return -EBUSY;
271 } 273 }