Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: GPL-2.0-or-later */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * Abilis Systems Single DVB-T Receiver
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  * Copyright (C) 2014 Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7) #include "as102_fe_types.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9) struct as102_fe_ops {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 	int (*set_tune)(void *priv, struct as10x_tune_args *tune_args);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) 	int (*get_tps)(void *priv, struct as10x_tps *tps);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	int (*get_status)(void *priv, struct as10x_tune_status *tstate);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	int (*get_stats)(void *priv, struct as10x_demod_stats *demod_stats);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) 	int (*stream_ctrl)(void *priv, int acquire, uint32_t elna_cfg);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) struct dvb_frontend *as102_attach(const char *name,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 				  const struct as102_fe_ops *ops,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) 				  void *priv,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 				  uint8_t elna_cfg);