forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-11 04dd17822334871b23ea2862f7798fb0e0007777
kernel/drivers/media/dvb-frontends/or51211.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Support for OR51211 (pcHDTV HD-2000) - VSB
34 *
....@@ -5,17 +6,6 @@
56 *
67 * Based on code from Jack Kelliher (kelliher@xmission.com)
78 * Copyright (C) 2002 & pcHDTV, inc.
8
- *
9
- * This program is free software; you can redistribute it and/or modify
10
- * it under the terms of the GNU General Public License as published by
11
- * the Free Software Foundation; either version 2 of the License, or
12
- * (at your option) any later version.
13
- *
14
- * This program is distributed in the hope that it will be useful,
15
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
- * GNU General Public License for more details.
18
- *
199 */
2010
2111 #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__
....@@ -59,7 +49,7 @@
5949
6050 /* Demodulator private data */
6151 u8 initialized:1;
62
- u32 snr; /* Result of last SNR claculation */
52
+ u32 snr; /* Result of last SNR calculation */
6353
6454 /* Tuner private data */
6555 u32 current_frequency;
....@@ -561,5 +551,5 @@
561551 MODULE_AUTHOR("Kirk Lapray");
562552 MODULE_LICENSE("GPL");
563553
564
-EXPORT_SYMBOL(or51211_attach);
554
+EXPORT_SYMBOL_GPL(or51211_attach);
565555