kgdb: Drop malformed kernel doc comment
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Wed, 6 May 2020 15:17:27 +0000 (18:17 +0300)
committerDaniel Thompson <daniel.thompson@linaro.org>
Thu, 7 May 2020 14:16:19 +0000 (15:16 +0100)
Kernel doc does not understand POD variables to be referred to.

.../debug_core.c:73: warning: cannot understand function prototype:
'int                             kgdb_connected; '

Convert kernel doc to pure comment.

Fixes: dc7d55270521 ("kgdb: core")
Cc: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Douglas Anderson <dianders@chromium.org>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
kernel/debug/debug_core.c

index 2b7c9b67931d6818d85d5066544172f2df8693ac..2266ba27f27d4ffe81b06afcf5351c3f4a4c0d16 100644 (file)
@@ -67,9 +67,7 @@ static int kgdb_break_asap;
 
 struct debuggerinfo_struct kgdb_info[NR_CPUS];
 
-/**
- * kgdb_connected - Is a host GDB connected to us?
- */
+/* kgdb_connected - Is a host GDB connected to us? */
 int                            kgdb_connected;
 EXPORT_SYMBOL_GPL(kgdb_connected);