Skip to content

Commit 8dc6115

Browse files
jlabundyLee Jones
authored andcommitted
mfd: iqs62x: Remove superfluous whitespace above fallthroughs
Previously, all instances of the /* fall through */ comment were preceded by a newline to improve readability. Now that /* fall through */ comments have been replaced with the fallthrough pseudo-keyword, the leftover whitespace looks out of place and can simply be removed. Fixes: df561f6 ("treewide: Use fallthrough pseudo-keyword") Signed-off-by: Jeff LaBundy <jeff@labundy.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
1 parent c7b79a7 commit 8dc6115

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

drivers/mfd/iqs62x.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ static int iqs62x_dev_init(struct iqs62x_core *iqs62x)
135135

136136
if (val & IQS620_PROX_SETTINGS_4_SAR_EN)
137137
iqs62x->ui_sel = IQS62X_UI_SAR1;
138-
139138
fallthrough;
140139

141140
case IQS621_PROD_NUM:
@@ -469,7 +468,6 @@ static irqreturn_t iqs62x_irq(int irq, void *context)
469468
switch (event_reg) {
470469
case IQS62X_EVENT_UI_LO:
471470
event_data.ui_data = get_unaligned_le16(&event_map[i]);
472-
473471
fallthrough;
474472

475473
case IQS62X_EVENT_UI_HI:
@@ -490,7 +488,6 @@ static irqreturn_t iqs62x_irq(int irq, void *context)
490488

491489
case IQS62X_EVENT_HYST:
492490
event_map[i] <<= iqs62x->dev_desc->hyst_shift;
493-
494491
fallthrough;
495492

496493
case IQS62X_EVENT_WHEEL:

0 commit comments

Comments
 (0)