hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/infiniband/hw/hfi1/pio_copy.c
....@@ -191,25 +191,24 @@
191191 switch (n) {
192192 case 7:
193193 *dest++ = *src++;
194
- /* fall through */
194
+ fallthrough;
195195 case 6:
196196 *dest++ = *src++;
197
- /* fall through */
197
+ fallthrough;
198198 case 5:
199199 *dest++ = *src++;
200
- /* fall through */
200
+ fallthrough;
201201 case 4:
202202 *dest++ = *src++;
203
- /* fall through */
203
+ fallthrough;
204204 case 3:
205205 *dest++ = *src++;
206
- /* fall through */
206
+ fallthrough;
207207 case 2:
208208 *dest++ = *src++;
209
- /* fall through */
209
+ fallthrough;
210210 case 1:
211211 *dest++ = *src++;
212
- /* fall through */
213212 }
214213 }
215214