.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Support for OR51211 (pcHDTV HD-2000) - VSB |
---|
3 | 4 | * |
---|
.. | .. |
---|
5 | 6 | * |
---|
6 | 7 | * Based on code from Jack Kelliher (kelliher@xmission.com) |
---|
7 | 8 | * 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 | | - * |
---|
19 | 9 | */ |
---|
20 | 10 | |
---|
21 | 11 | #define pr_fmt(fmt) KBUILD_MODNAME ": %s: " fmt, __func__ |
---|
.. | .. |
---|
59 | 49 | |
---|
60 | 50 | /* Demodulator private data */ |
---|
61 | 51 | u8 initialized:1; |
---|
62 | | - u32 snr; /* Result of last SNR claculation */ |
---|
| 52 | + u32 snr; /* Result of last SNR calculation */ |
---|
63 | 53 | |
---|
64 | 54 | /* Tuner private data */ |
---|
65 | 55 | u32 current_frequency; |
---|
.. | .. |
---|
561 | 551 | MODULE_AUTHOR("Kirk Lapray"); |
---|
562 | 552 | MODULE_LICENSE("GPL"); |
---|
563 | 553 | |
---|
564 | | -EXPORT_SYMBOL(or51211_attach); |
---|
| 554 | +EXPORT_SYMBOL_GPL(or51211_attach); |
---|
565 | 555 | |
---|