// SPDX-License-Identifier: GPL-2.0-or-later /* * Abilis Systems Single DVB-T Receiver * Copyright (C) 2008 Pierrick Hascoet <[email protected]> */ #include <linux/kernel.h> #include "as102_drv.h" #include "as10x_cmd.h" /** * as10x_cmd_add_PID_filter - send add filter command to AS10x * @adap: pointer to AS10x bus adapter * @filter: TSFilter filter for DVB-T * * Return 0 on success or negative value in case of error. */ int as10x_cmd_add_PID_filter(struct as10x_bus_adapter_t *adap, struct as10x_ts_filter *filter) { … } /** * as10x_cmd_del_PID_filter - Send delete filter command to AS10x * @adap: pointer to AS10x bus adapte * @pid_value: PID to delete * * Return 0 on success or negative value in case of error. */ int as10x_cmd_del_PID_filter(struct as10x_bus_adapter_t *adap, uint16_t pid_value) { … } /** * as10x_cmd_start_streaming - Send start streaming command to AS10x * @adap: pointer to AS10x bus adapter * * Return 0 on success or negative value in case of error. */ int as10x_cmd_start_streaming(struct as10x_bus_adapter_t *adap) { … } /** * as10x_cmd_stop_streaming - Send stop streaming command to AS10x * @adap: pointer to AS10x bus adapter * * Return 0 on success or negative value in case of error. */ int as10x_cmd_stop_streaming(struct as10x_bus_adapter_t *adap) { … }