VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Christophe Leroy <christophe.leroy@c-s.fr> 2018-12-06 20:07:40 +0000 committer: Daniel Thompson <daniel.thompson@linaro.org> 2018-12-30 08:33:06 +0000 commit: cc0282975b3f887005c380adcf0af95915f0c1bb parent: 911b7afdeb1b6058056c3a74e15d5ebb7eb6225e
Commit Summary:
kgdb/treewide: constify struct kgdb_arch arch_kgdb_ops
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/arch/h8300/kernel/kgdb.c b/arch/h8300/kernel/kgdb.c
index 1a1d30cb0609..602e478afbd5 100644
--- a/arch/h8300/kernel/kgdb.c
+++ b/arch/h8300/kernel/kgdb.c
@@ -129,7 +129,7 @@ void kgdb_arch_exit(void)
 	/* Nothing to do */
 }
 
-struct kgdb_arch arch_kgdb_ops = {
+const struct kgdb_arch arch_kgdb_ops = {
 	/* Breakpoint instruction: trapa #2 */
 	.gdb_bpt_instr = { 0x57, 0x20 },
 };