.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * PS/2 driver library |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * Copyright (c) 2004 Dmitry Torokhov |
---|
6 | 7 | */ |
---|
7 | 8 | |
---|
8 | | -/* |
---|
9 | | - * This program is free software; you can redistribute it and/or modify it |
---|
10 | | - * under the terms of the GNU General Public License version 2 as published by |
---|
11 | | - * the Free Software Foundation. |
---|
12 | | - */ |
---|
13 | 9 | |
---|
14 | 10 | #include <linux/delay.h> |
---|
15 | 11 | #include <linux/module.h> |
---|
.. | .. |
---|
409 | 405 | ps2dev->nak = PS2_RET_ERR; |
---|
410 | 406 | break; |
---|
411 | 407 | } |
---|
| 408 | + /* Fall through */ |
---|
412 | 409 | |
---|
413 | 410 | /* |
---|
414 | 411 | * Workaround for mice which don't ACK the Get ID command. |
---|
.. | .. |
---|
421 | 418 | ps2dev->nak = 0; |
---|
422 | 419 | break; |
---|
423 | 420 | } |
---|
424 | | - /* Fall through */ |
---|
| 421 | + fallthrough; |
---|
425 | 422 | default: |
---|
426 | 423 | /* |
---|
427 | 424 | * Do not signal errors if we get unexpected reply while |
---|