mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:11:14 +07:00
3e0a4e8580
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 44 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Richard Fontana <rfontana@redhat.com> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190523091651.032047323@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21 lines
675 B
C
21 lines
675 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Abilis Systems Single DVB-T Receiver
|
|
* Copyright (C) 2014 Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
|
|
*/
|
|
|
|
#include "as102_fe_types.h"
|
|
|
|
struct as102_fe_ops {
|
|
int (*set_tune)(void *priv, struct as10x_tune_args *tune_args);
|
|
int (*get_tps)(void *priv, struct as10x_tps *tps);
|
|
int (*get_status)(void *priv, struct as10x_tune_status *tstate);
|
|
int (*get_stats)(void *priv, struct as10x_demod_stats *demod_stats);
|
|
int (*stream_ctrl)(void *priv, int acquire, uint32_t elna_cfg);
|
|
};
|
|
|
|
struct dvb_frontend *as102_attach(const char *name,
|
|
const struct as102_fe_ops *ops,
|
|
void *priv,
|
|
uint8_t elna_cfg);
|