.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Driver for Zarlink DVB-T MT352 demodulator |
---|
3 | 4 | * |
---|
.. | .. |
---|
13 | 14 | * |
---|
14 | 15 | * DVICO FusionHDTV DVB-T1 and DVICO FusionHDTV DVB-T Lite support by |
---|
15 | 16 | * Christopher Pascoe <c.pascoe@itee.uq.edu.au> |
---|
16 | | - * |
---|
17 | | - * This program is free software; you can redistribute it and/or modify |
---|
18 | | - * it under the terms of the GNU General Public License as published by |
---|
19 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
20 | | - * (at your option) any later version. |
---|
21 | | - * |
---|
22 | | - * This program is distributed in the hope that it will be useful, |
---|
23 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
24 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
25 | | - * |
---|
26 | | - * GNU General Public License for more details. |
---|
27 | 17 | */ |
---|
28 | 18 | |
---|
29 | 19 | #include <linux/kernel.h> |
---|
.. | .. |
---|
211 | 201 | if (op->hierarchy == HIERARCHY_AUTO || |
---|
212 | 202 | op->hierarchy == HIERARCHY_NONE) |
---|
213 | 203 | break; |
---|
214 | | - /* fall through */ |
---|
| 204 | + fallthrough; |
---|
215 | 205 | default: |
---|
216 | 206 | return -EINVAL; |
---|
217 | 207 | } |
---|
.. | .. |
---|
603 | 593 | MODULE_AUTHOR("Holger Waechtler, Daniel Mack, Antonio Mancuso"); |
---|
604 | 594 | MODULE_LICENSE("GPL"); |
---|
605 | 595 | |
---|
606 | | -EXPORT_SYMBOL(mt352_attach); |
---|
| 596 | +EXPORT_SYMBOL_GPL(mt352_attach); |
---|