summaryrefslogtreecommitdiffstats
path: root/kernel/kgdb.c
diff options
context:
space:
mode:
authorJason Wessel2008-06-24 17:52:55 +0200
committerJason Wessel2008-06-24 17:52:55 +0200
commitaabdc3b8c3b3d081f1532454e344208338478e29 (patch)
tree5ff3d5c873fa12ec3797690598e8daa2c3225071 /kernel/kgdb.c
parentkgdb: documentation update - remove kgdboe (diff)
downloadkernel-qcow2-linux-aabdc3b8c3b3d081f1532454e344208338478e29.tar.gz
kernel-qcow2-linux-aabdc3b8c3b3d081f1532454e344208338478e29.tar.xz
kernel-qcow2-linux-aabdc3b8c3b3d081f1532454e344208338478e29.zip
kgdb: sparse fix
- Fix warning reported by sparse kernel/kgdb.c:1502:6: warning: symbol 'kgdb_console_write' was not declared. Should it be static? Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Diffstat (limited to 'kernel/kgdb.c')
-rw-r--r--kernel/kgdb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/kgdb.c b/kernel/kgdb.c
index 79e3c90113c2..3ec23c3ec97f 100644
--- a/kernel/kgdb.c
+++ b/kernel/kgdb.c
@@ -1499,7 +1499,8 @@ int kgdb_nmicallback(int cpu, void *regs)
return 1;
}
-void kgdb_console_write(struct console *co, const char *s, unsigned count)
+static void kgdb_console_write(struct console *co, const char *s,
+ unsigned count)
{
unsigned long flags;