hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/media/dvb-frontends/nxt200x.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Support for NXT2002 and NXT2004 - VSB/QAM
34 *
....@@ -5,17 +6,6 @@
56 * Copyright (C) 2006-2014 Michael Krufky <mkrufky@linuxtv.org>
67 * based on nxt2002 by Taylor Jacob <rtjacob@earthlink.net>
78 * and nxt2004 by Jean-Francois Thibert <jeanfrancois@sagetv.com>
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 /*
....@@ -153,7 +143,7 @@
153143 u8 attr, len2, buf;
154144 dprintk("%s\n", __func__);
155145
156
- /* set mutli register register */
146
+ /* set multi register register */
157147 nxt200x_writebytes(state, 0x35, &reg, 1);
158148
159149 /* send the actual data */
....@@ -214,7 +204,7 @@
214204 u8 buf, len2, attr;
215205 dprintk("%s\n", __func__);
216206
217
- /* set mutli register register */
207
+ /* set multi register register */
218208 nxt200x_writebytes(state, 0x35, &reg, 1);
219209
220210 switch (state->demod_chip) {
....@@ -1242,5 +1232,5 @@
12421232 MODULE_AUTHOR("Kirk Lapray, Michael Krufky, Jean-Francois Thibert, and Taylor Jacob");
12431233 MODULE_LICENSE("GPL");
12441234
1245
-EXPORT_SYMBOL(nxt200x_attach);
1235
+EXPORT_SYMBOL_GPL(nxt200x_attach);
12461236