commit | 70ee5731a40b1f07f151e52c3c4ed27d70d4f9fe | [log] [tgz] |
---|---|---|
author | Vincent Chen <vincent.chen@sifive.com> | Tue Jun 23 13:37:35 2020 +0800 |
committer | Palmer Dabbelt <palmerdabbelt@google.com> | Thu Jul 09 20:12:28 2020 -0700 |
tree | 459ae8550b02dbc4ec558ff479863ee5829fa5d1 | |
parent | def0aa218e6d42231540329e6f5741fdec9e7da4 [diff] |
riscv: Avoid kgdb.h including gdb_xml.h to solve unused-const-variable warning The constant arrays in gdb_xml.h are only used in arch/riscv/kernel/kgdb.c, but other c files may include the gdb_xml.h indirectly via including the kgdb.h. Hence, It will cause many unused-const-variable warnings. This patch makes the kgdb.h not to include the gdb_xml.h to solve this problem. Signed-off-by: Vincent Chen <vincent.chen@sifive.com> Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>