.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * Support for OR51132 (pcHDTV HD-3000) - VSB/QAM |
---|
3 | | - * |
---|
4 | 4 | * |
---|
5 | 5 | * Copyright (C) 2007 Trent Piepho <xyzzy@speakeasy.org> |
---|
6 | 6 | * |
---|
.. | .. |
---|
8 | 8 | * |
---|
9 | 9 | * Based on code from Jack Kelliher (kelliher@xmission.com) |
---|
10 | 10 | * Copyright (C) 2002 & pcHDTV, inc. |
---|
11 | | - * |
---|
12 | | - * This program is free software; you can redistribute it and/or modify |
---|
13 | | - * it under the terms of the GNU General Public License as published by |
---|
14 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
15 | | - * (at your option) any later version. |
---|
16 | | - * |
---|
17 | | - * This program is distributed in the hope that it will be useful, |
---|
18 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
19 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
20 | | - * GNU General Public License for more details. |
---|
21 | | - * |
---|
22 | 11 | */ |
---|
23 | 12 | |
---|
24 | 13 | /* |
---|
.. | .. |
---|
493 | 482 | switch (reg&0xff) { |
---|
494 | 483 | case 0x06: |
---|
495 | 484 | if (reg & 0x1000) usK = 3 << 24; |
---|
496 | | - /* fall through */ |
---|
| 485 | + fallthrough; |
---|
497 | 486 | case 0x43: /* QAM64 */ |
---|
498 | 487 | c = 150204167; |
---|
499 | 488 | break; |
---|
.. | .. |
---|
616 | 605 | MODULE_AUTHOR("Trent Piepho"); |
---|
617 | 606 | MODULE_LICENSE("GPL"); |
---|
618 | 607 | |
---|
619 | | -EXPORT_SYMBOL(or51132_attach); |
---|
| 608 | +EXPORT_SYMBOL_GPL(or51132_attach); |
---|