summaryrefslogtreecommitdiff
path: root/src/lib/dp_aux.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/dp_aux.c')
-rw-r--r--src/lib/dp_aux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/dp_aux.c b/src/lib/dp_aux.c
index c6e2de2d62..6a925f13f6 100644
--- a/src/lib/dp_aux.c
+++ b/src/lib/dp_aux.c
@@ -20,13 +20,13 @@ enum i2c_over_aux dp_get_aux_cmd(enum aux_request request, uint32_t remaining_af
case I2C_RAW_WRITE_AND_STOP:
if (!remaining_after_this)
return I2C_OVER_AUX_WRITE_MOT_0;
- /* fallthrough */
+ __fallthrough;
case I2C_RAW_WRITE:
return I2C_OVER_AUX_WRITE_MOT_1;
case I2C_RAW_READ_AND_STOP:
if (!remaining_after_this)
return I2C_OVER_AUX_READ_MOT_0;
- /* fallthrough */
+ __fallthrough;
case I2C_RAW_READ:
return I2C_OVER_AUX_READ_MOT_1;
case DPCD_WRITE: