.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
---|
1 | 2 | /* |
---|
2 | 3 | * Driver for Dummy Frontend |
---|
3 | 4 | * |
---|
4 | 5 | * Written by Emard <emard@softhome.net> |
---|
5 | | - * |
---|
6 | | - * This program is free software; you can redistribute it and/or modify |
---|
7 | | - * it under the terms of the GNU General Public License as published by |
---|
8 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
9 | | - * (at your option) any later version. |
---|
10 | | - * |
---|
11 | | - * This program is distributed in the hope that it will be useful, |
---|
12 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | | - * |
---|
15 | | - * GNU General Public License for more details. |
---|
16 | 6 | */ |
---|
17 | 7 | |
---|
18 | 8 | #ifndef DVB_DUMMY_FE_H |
---|
.. | .. |
---|
22 | 12 | #include <media/dvb_frontend.h> |
---|
23 | 13 | |
---|
24 | 14 | #if IS_REACHABLE(CONFIG_DVB_DUMMY_FE) |
---|
25 | | -extern struct dvb_frontend* dvb_dummy_fe_ofdm_attach(void); |
---|
26 | | -extern struct dvb_frontend* dvb_dummy_fe_qpsk_attach(void); |
---|
27 | | -extern struct dvb_frontend* dvb_dummy_fe_qam_attach(void); |
---|
| 15 | +struct dvb_frontend *dvb_dummy_fe_ofdm_attach(void); |
---|
| 16 | +struct dvb_frontend *dvb_dummy_fe_qpsk_attach(void); |
---|
| 17 | +struct dvb_frontend *dvb_dummy_fe_qam_attach(void); |
---|
28 | 18 | #else |
---|
29 | 19 | static inline struct dvb_frontend *dvb_dummy_fe_ofdm_attach(void) |
---|
30 | 20 | { |
---|
31 | | - printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
---|
| 21 | + pr_warn("%s: driver disabled by Kconfig\n", __func__); |
---|
32 | 22 | return NULL; |
---|
33 | 23 | } |
---|
34 | 24 | static inline struct dvb_frontend *dvb_dummy_fe_qpsk_attach(void) |
---|
35 | 25 | { |
---|
36 | | - printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
---|
| 26 | + pr_warn("%s: driver disabled by Kconfig\n", __func__); |
---|
37 | 27 | return NULL; |
---|
38 | 28 | } |
---|
39 | 29 | static inline struct dvb_frontend *dvb_dummy_fe_qam_attach(void) |
---|
40 | 30 | { |
---|
41 | | - printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
---|
| 31 | + pr_warn("%s: driver disabled by Kconfig\n", __func__); |
---|
42 | 32 | return NULL; |
---|
43 | 33 | } |
---|
44 | 34 | #endif /* CONFIG_DVB_DUMMY_FE */ |
---|