.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * Frontend driver for mobile DVB-T demodulator DiBcom 3000M-B |
---|
3 | 4 | * DiBcom (http://www.dibcom.fr/) |
---|
.. | .. |
---|
8 | 9 | * |
---|
9 | 10 | * Copyright (C) 2004 Amaury Demol for DiBcom |
---|
10 | 11 | * |
---|
11 | | - * This program is free software; you can redistribute it and/or |
---|
12 | | - * modify it under the terms of the GNU General Public License as |
---|
13 | | - * published by the Free Software Foundation, version 2. |
---|
14 | | - * |
---|
15 | 12 | * Acknowledgements |
---|
16 | 13 | * |
---|
17 | 14 | * Amaury Demol from DiBcom for providing specs and driver |
---|
18 | 15 | * sources, on which this driver (and the dvb-dibusb) are based. |
---|
19 | 16 | * |
---|
20 | | - * see Documentation/media/dvb-drivers/dvb-usb.rst for more information |
---|
21 | | - * |
---|
| 17 | + * see Documentation/driver-api/media/drivers/dvb-usb.rst for more information |
---|
22 | 18 | */ |
---|
23 | 19 | |
---|
24 | 20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
---|
.. | .. |
---|
228 | 224 | switch (c->hierarchy) { |
---|
229 | 225 | case HIERARCHY_NONE: |
---|
230 | 226 | deb_setf("hierarchy: none\n"); |
---|
231 | | - /* fall through */ |
---|
| 227 | + fallthrough; |
---|
232 | 228 | case HIERARCHY_1: |
---|
233 | 229 | deb_setf("hierarchy: alpha=1\n"); |
---|
234 | 230 | wr(DIB3000MB_REG_VIT_ALPHA, DIB3000_ALPHA_1); |
---|
.. | .. |
---|
819 | 815 | MODULE_DESCRIPTION(DRIVER_DESC); |
---|
820 | 816 | MODULE_LICENSE("GPL"); |
---|
821 | 817 | |
---|
822 | | -EXPORT_SYMBOL(dib3000mb_attach); |
---|
| 818 | +EXPORT_SYMBOL_GPL(dib3000mb_attach); |
---|