forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-11 04dd17822334871b23ea2862f7798fb0e0007777
kernel/drivers/media/dvb-frontends/or51132.c
....@@ -1,6 +1,6 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Support for OR51132 (pcHDTV HD-3000) - VSB/QAM
3
- *
44 *
55 * Copyright (C) 2007 Trent Piepho <xyzzy@speakeasy.org>
66 *
....@@ -8,17 +8,6 @@
88 *
99 * Based on code from Jack Kelliher (kelliher@xmission.com)
1010 * Copyright (C) 2002 & pcHDTV, inc.
11
- *
12
- * This program is free software; you can redistribute it and/or modify
13
- * it under the terms of the GNU General Public License as published by
14
- * the Free Software Foundation; either version 2 of the License, or
15
- * (at your option) any later version.
16
- *
17
- * This program is distributed in the hope that it will be useful,
18
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
19
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
- * GNU General Public License for more details.
21
- *
2211 */
2312
2413 /*
....@@ -493,7 +482,7 @@
493482 switch (reg&0xff) {
494483 case 0x06:
495484 if (reg & 0x1000) usK = 3 << 24;
496
- /* fall through */
485
+ fallthrough;
497486 case 0x43: /* QAM64 */
498487 c = 150204167;
499488 break;
....@@ -616,4 +605,4 @@
616605 MODULE_AUTHOR("Trent Piepho");
617606 MODULE_LICENSE("GPL");
618607
619
-EXPORT_SYMBOL(or51132_attach);
608
+EXPORT_SYMBOL_GPL(or51132_attach);