diff options
Diffstat (limited to 'os/rt/src/chschd.c')
-rw-r--r-- | os/rt/src/chschd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/src/chschd.c b/os/rt/src/chschd.c index d4bf1cafa..476b19836 100644 --- a/os/rt/src/chschd.c +++ b/os/rt/src/chschd.c @@ -332,11 +332,11 @@ static void wakeup(void *p) { #if CH_CFG_USE_SEMAPHORES == TRUE
case CH_STATE_WTSEM:
chSemFastSignalI(tp->u.wtsemp);
- /* Falls into, intentional. */
+ /* Falls through.*/
#endif
#if (CH_CFG_USE_CONDVARS == TRUE) && (CH_CFG_USE_CONDVARS_TIMEOUT == TRUE)
case CH_STATE_WTCOND:
- /* Falls into, intentional. */
+ /* Falls through.*/
#endif
case CH_STATE_QUEUED:
/* States requiring dequeuing.*/
|