hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/media/dvb-frontends/mt352.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Driver for Zarlink DVB-T MT352 demodulator
34 *
....@@ -13,17 +14,6 @@
1314 *
1415 * DVICO FusionHDTV DVB-T1 and DVICO FusionHDTV DVB-T Lite support by
1516 * 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.
2717 */
2818
2919 #include <linux/kernel.h>
....@@ -211,7 +201,7 @@
211201 if (op->hierarchy == HIERARCHY_AUTO ||
212202 op->hierarchy == HIERARCHY_NONE)
213203 break;
214
- /* fall through */
204
+ fallthrough;
215205 default:
216206 return -EINVAL;
217207 }
....@@ -603,4 +593,4 @@
603593 MODULE_AUTHOR("Holger Waechtler, Daniel Mack, Antonio Mancuso");
604594 MODULE_LICENSE("GPL");
605595
606
-EXPORT_SYMBOL(mt352_attach);
596
+EXPORT_SYMBOL_GPL(mt352_attach);