Skip to content

Commit 824afd5

Browse files
mhiramatrostedt
authored andcommitted
tools/bootconfig: Fix a build error accroding to undefined fallthrough
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 <[email protected]> Cc: [email protected] Fixes: 4c1ca83 ("Revert "lib: Revert use of fallthrough pseudo-keyword in lib/"") Signed-off-by: Masami Hiramatsu <[email protected]> Signed-off-by: Steven Rostedt (VMware) <[email protected]>
1 parent e8ba0b2 commit 824afd5

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/bootconfig/include/linux/bootconfig.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@
44

55
#include "../../../../include/linux/bootconfig.h"
66

7+
#ifndef fallthrough
8+
# define fallthrough
9+
#endif
10+
711
#endif

0 commit comments

Comments
 (0)