]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
tools/bootconfig: Fix a build error accroding to undefined fallthrough
authorMasami Hiramatsu <mhiramat@kernel.org>
Thu, 13 May 2021 03:06:33 +0000 (12:06 +0900)
committerKleber Sacilotto de Souza <kleber.souza@canonical.com>
Thu, 15 Jul 2021 17:24:19 +0000 (19:24 +0200)
BugLink: https://bugs.launchpad.net/bugs/1934012
commit 824afd55e95c3cb12c55d297a0ae408be1779cc8 upstream.

Since the "fallthrough" is defined only in the kernel, building
lib/bootconfig.c as a part of user-space tools causes a build
error.

Add a dummy fallthrough to avoid the build error.

Link: https://lkml.kernel.org/r/162087519356.442660.11385099982318160180.stgit@devnote2
Cc: Ingo Molnar <mingo@kernel.org>
Cc: stable@vger.kernel.org
Fixes: 4c1ca831adb1 ("Revert "lib: Revert use of fallthrough pseudo-keyword in lib/"")
Signed-off-by: Masami Hiramatsu <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
tools/bootconfig/include/linux/bootconfig.h

index 078cbd2ba651dc2096bd5d4e33916f3641b206a3..de7f30f99af384304b0ef865d1060e9b1672a55b 100644 (file)
@@ -4,4 +4,8 @@
 
 #include "../../../../include/linux/bootconfig.h"
 
+#ifndef fallthrough
+# define fallthrough
+#endif
+
 #endif