Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit dcae7781 authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab
Browse files

[media] as102-fe: make it an independent driver



Move as102-fe to dvb-frontends directory and make it an
independent driver.

Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent 47f79129
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -471,6 +471,11 @@ config DVB_SI2168
	help
	  Say Y when you want to support this frontend.

config DVB_AS102_FE
	tristate
	depends on DVB_CORE
	default DVB_AS102

comment "DVB-C (cable) frontends"
	depends on DVB_CORE

+1 −1
Original line number Diff line number Diff line
@@ -113,4 +113,4 @@ obj-$(CONFIG_DVB_RTL2832) += rtl2832.o
obj-$(CONFIG_DVB_RTL2832_SDR) += rtl2832_sdr.o
obj-$(CONFIG_DVB_M88RS2000) += m88rs2000.o
obj-$(CONFIG_DVB_AF9033) += af9033.o
obj-$(CONFIG_DVB_AS102_FE) += as102_fe.o
+4 −0
Original line number Diff line number Diff line
@@ -464,3 +464,7 @@ struct dvb_frontend *as102_attach(const char *name,

}
EXPORT_SYMBOL_GPL(as102_attach);

MODULE_DESCRIPTION("as102-fe");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Pierrick Hascoet <pierrick.hascoet@abilis.com>");
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
 * GNU General Public License for more details.
 */

#include "as10x_types.h"
#include "as102_fe_types.h"

struct as102_fe_ops {
	int (*set_tune)(void *priv, struct as10x_tune_args *tune_args);
Loading