25 lines · c
1/* SPDX-License-Identifier: GPL-2.0-or-later */2/*3 * TTUSB DEC Driver4 *5 * Copyright (C) 2003-2004 Alex Woods <linux-dvb@giblets.org>6 */7 8#ifndef TTUSBDECFE_H9#define TTUSBDECFE_H10 11#include <linux/dvb/frontend.h>12 13struct ttusbdecfe_config14{15 int (*send_command)(struct dvb_frontend* fe, const u8 command,16 int param_length, const u8 params[],17 int *result_length, u8 cmd_result[]);18};19 20extern struct dvb_frontend* ttusbdecfe_dvbs_attach(const struct ttusbdecfe_config* config);21 22extern struct dvb_frontend* ttusbdecfe_dvbt_attach(const struct ttusbdecfe_config* config);23 24#endif // TTUSBDECFE_H25