summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2021-07-06 11:29:18 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2021-07-06 11:29:18 -0700
commitdf8ba5f160335cf9ea09c0a037235331a171fe1a (patch)
treeb72ef57ec80fb45c82925015e3c7f264b5266602 /include
parent76e2d16bd5d0193f891a0e30f14ef5c8c370bc8f (diff)
parentc8daba4640ac9619f9cb34ca7c314ff1eaff5f33 (diff)
downloadlinux-stable-df8ba5f160335cf9ea09c0a037235331a171fe1a.tar.gz
linux-stable-df8ba5f160335cf9ea09c0a037235331a171fe1a.tar.bz2
linux-stable-df8ba5f160335cf9ea09c0a037235331a171fe1a.zip
Merge tag 'kgdb-5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux
Pull kgdb updates from Daniel Thompson: "This was a extremely quiet cycle for kgdb. This consists of two patches that between them address spelling errors and a switch fallthrough warning" * tag 'kgdb-5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux: kgdb: Fix fall-through warning for Clang kgdb: Fix spelling mistakes
Diffstat (limited to 'include')
-rw-r--r--include/linux/kgdb.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h
index 392a3670944c..258cdde8d356 100644
--- a/include/linux/kgdb.h
+++ b/include/linux/kgdb.h
@@ -105,9 +105,9 @@ extern int dbg_set_reg(int regno, void *mem, struct pt_regs *regs);
*/
/**
- * kgdb_arch_init - Perform any architecture specific initalization.
+ * kgdb_arch_init - Perform any architecture specific initialization.
*
- * This function will handle the initalization of any architecture
+ * This function will handle the initialization of any architecture
* specific callbacks.
*/
extern int kgdb_arch_init(void);
@@ -229,9 +229,9 @@ extern int kgdb_arch_set_breakpoint(struct kgdb_bkpt *bpt);
extern int kgdb_arch_remove_breakpoint(struct kgdb_bkpt *bpt);
/**
- * kgdb_arch_late - Perform any architecture specific initalization.
+ * kgdb_arch_late - Perform any architecture specific initialization.
*
- * This function will handle the late initalization of any
+ * This function will handle the late initialization of any
* architecture specific callbacks. This is an optional function for
* handling things like late initialization of hw breakpoints. The
* default implementation does nothing.