diff options
author | Nadav Amit <namit@vmware.com> | 2018-10-22 06:45:48 +0200 |
---|---|---|
committer | Daniel Thompson <daniel.thompson@linaro.org> | 2019-09-03 12:19:41 +0200 |
commit | d8a050f5a3e8242242df6430d5980c142350e461 (patch) | |
tree | 468c20efd4760f4ffcd848e1e50b727411081699 /kernel | |
parent | kdb: Replace strncmp with str_has_prefix (diff) | |
download | linux-d8a050f5a3e8242242df6430d5980c142350e461.tar.xz linux-d8a050f5a3e8242242df6430d5980c142350e461.zip |
kgdb: fix comment regarding static function
The comment that says that module_event() is not static is clearly
wrong.
Signed-off-by: Nadav Amit <namit@vmware.com>
Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/debug/debug_core.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/debug/debug_core.c b/kernel/debug/debug_core.c index 5cc608de6883..10f1187b3907 100644 --- a/kernel/debug/debug_core.c +++ b/kernel/debug/debug_core.c @@ -787,11 +787,8 @@ out: } /* - * GDB places a breakpoint at this function to know dynamically - * loaded objects. It's not defined static so that only one instance with this - * name exists in the kernel. + * GDB places a breakpoint at this function to know dynamically loaded objects. */ - static int module_event(struct notifier_block *self, unsigned long val, void *data) { |