2 * Driver for Dummy Frontend
4 * Written by Emard <emard@softhome.net>
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.
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
15 * GNU General Public License for more details.
18 #ifndef DVB_DUMMY_FE_H
19 #define DVB_DUMMY_FE_H
21 #include <linux/dvb/frontend.h>
22 #include <media/dvb_frontend.h>
24 #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);
29 static inline struct dvb_frontend
*dvb_dummy_fe_ofdm_attach(void)
31 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
34 static inline struct dvb_frontend
*dvb_dummy_fe_qpsk_attach(void)
36 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
39 static inline struct dvb_frontend
*dvb_dummy_fe_qam_attach(void)
41 printk(KERN_WARNING
"%s: driver disabled by Kconfig\n", __func__
);
44 #endif /* CONFIG_DVB_DUMMY_FE */
46 #endif // DVB_DUMMY_FE_H