.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Support for NXT2002 and NXT2004 - VSB/QAM |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * Copyright (C) 2006-2014 Michael Krufky <mkrufky@linuxtv.org> |
---|
6 | 7 | * based on nxt2002 by Taylor Jacob <rtjacob@earthlink.net> |
---|
7 | 8 | * 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 | | - * |
---|
19 | 9 | */ |
---|
20 | 10 | |
---|
21 | 11 | /* |
---|
.. | .. |
---|
153 | 143 | u8 attr, len2, buf; |
---|
154 | 144 | dprintk("%s\n", __func__); |
---|
155 | 145 | |
---|
156 | | - /* set mutli register register */ |
---|
| 146 | + /* set multi register register */ |
---|
157 | 147 | nxt200x_writebytes(state, 0x35, ®, 1); |
---|
158 | 148 | |
---|
159 | 149 | /* send the actual data */ |
---|
.. | .. |
---|
214 | 204 | u8 buf, len2, attr; |
---|
215 | 205 | dprintk("%s\n", __func__); |
---|
216 | 206 | |
---|
217 | | - /* set mutli register register */ |
---|
| 207 | + /* set multi register register */ |
---|
218 | 208 | nxt200x_writebytes(state, 0x35, ®, 1); |
---|
219 | 209 | |
---|
220 | 210 | switch (state->demod_chip) { |
---|
.. | .. |
---|
1242 | 1232 | MODULE_AUTHOR("Kirk Lapray, Michael Krufky, Jean-Francois Thibert, and Taylor Jacob"); |
---|
1243 | 1233 | MODULE_LICENSE("GPL"); |
---|
1244 | 1234 | |
---|
1245 | | -EXPORT_SYMBOL(nxt200x_attach); |
---|
| 1235 | +EXPORT_SYMBOL_GPL(nxt200x_attach); |
---|
1246 | 1236 | |
---|