VisionFive2 Linux kernel

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

More than 9999 Commits   32 Branches   54 Tags
author: Gustavo A. R. Silva <gustavoars@kernel.org> 2021-07-13 13:09:06 -0500 committer: Gustavo A. R. Silva <gustavoars@kernel.org> 2021-07-13 13:57:44 -0500 commit: f336a009f8e3dd0b47168565584608a4a62cbbb4 parent: 2e7ea96924acc502929c3ffa0fcbdaeec00b2208
Commit Summary:
math-emu: Fix fall-through warning
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/include/math-emu/op-common.h b/include/math-emu/op-common.h
index 143568d64b20..4b57bbba588a 100644
--- a/include/math-emu/op-common.h
+++ b/include/math-emu/op-common.h
@@ -338,7 +338,7 @@ do {									     \
 	FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_ISI);		     \
 	break;								     \
       }									     \
-    /* FALLTHRU */							     \
+    fallthrough;							     \
 									     \
   case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL):			     \
   case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO):				     \