mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
9a33a27e7f
Cleanup the ddbridge's dummy driver by removing the parts that aren't needed by ddbridge, adding it to the building system and changing the binding at the driver to use the newer function name. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
17 lines
341 B
C
17 lines
341 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Driver for Dummy Frontend
|
|
*
|
|
* Written by Emard <emard@softhome.net>
|
|
*/
|
|
|
|
#ifndef DDBRIDGE_DUMMY_FE_H
|
|
#define DDBRIDGE_DUMMY_FE_H
|
|
|
|
#include <linux/dvb/frontend.h>
|
|
#include <media/dvb_frontend.h>
|
|
|
|
struct dvb_frontend *ddbridge_dummy_fe_qam_attach(void);
|
|
|
|
#endif // DDBRIDGE_DUMMY_FE_H
|