.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * stv6110.c |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * |
---|
6 | 7 | * Copyright (C) 2009 NetUP Inc. |
---|
7 | 8 | * Copyright (C) 2009 Igor M. Liplianin <liplianin@netup.ru> |
---|
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 | | - * |
---|
18 | | - * GNU General Public License for more details. |
---|
19 | 9 | */ |
---|
20 | 10 | |
---|
21 | 11 | #include <linux/slab.h> |
---|
.. | .. |
---|
202 | 192 | i++; |
---|
203 | 193 | } |
---|
204 | 194 | |
---|
205 | | - /* RCCLKOFF = 1 calibration done, desactivate the calibration Clock */ |
---|
| 195 | + /* RCCLKOFF = 1 calibration done, deactivate the calibration Clock */ |
---|
206 | 196 | priv->regs[RSTV6110_CTRL3] |= (1 << 6); |
---|
207 | 197 | stv6110_write_regs(fe, &priv->regs[RSTV6110_CTRL3], RSTV6110_CTRL3, 1); |
---|
208 | 198 | return 0; |
---|
.. | .. |
---|
437 | 427 | |
---|
438 | 428 | return fe; |
---|
439 | 429 | } |
---|
440 | | -EXPORT_SYMBOL(stv6110_attach); |
---|
| 430 | +EXPORT_SYMBOL_GPL(stv6110_attach); |
---|
441 | 431 | |
---|
442 | 432 | module_param(debug, int, 0644); |
---|
443 | 433 | MODULE_PARM_DESC(debug, "Turn on/off frontend debugging (default:off)."); |
---|