aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/kgdb.h
diff options
context:
space:
mode:
authorDouglas Anderson <dianders@chromium.org>2023-06-01 14:31:50 -0700
committerDaniel Thompson <daniel.thompson@linaro.org>2023-06-29 15:06:32 +0100
commit8117f948f12bc559edf40916e7693512c8c9a50b (patch)
treeed7dbbb0fdb0292b4ebc26024a92412095dcd9d2 /include/linux/kgdb.h
parentLinux 6.4-rc6 (diff)
downloadwireguard-linux-8117f948f12bc559edf40916e7693512c8c9a50b.tar.xz
wireguard-linux-8117f948f12bc559edf40916e7693512c8c9a50b.zip
kgdb: Provide a stub kgdb_nmicallback() if !CONFIG_KGDB
To save architectures from needing to wrap the call in #ifdefs, add a stub no-op version of kgdb_nmicallback(), which returns 1 if it didn't handle anything. Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/20230601143109.v9.6.Ia3aeac89bb6751b682237e76e5ba594318e4b1aa@changeid Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Diffstat (limited to 'include/linux/kgdb.h')
-rw-r--r--include/linux/kgdb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/kgdb.h b/include/linux/kgdb.h
index 258cdde8d356..76e891ee9e37 100644
--- a/include/linux/kgdb.h
+++ b/include/linux/kgdb.h
@@ -365,5 +365,6 @@ extern void kgdb_free_init_mem(void);
#define dbg_late_init()
static inline void kgdb_panic(const char *msg) {}
static inline void kgdb_free_init_mem(void) { }
+static inline int kgdb_nmicallback(int cpu, void *regs) { return 1; }
#endif /* ! CONFIG_KGDB */
#endif /* _KGDB_H_ */