28 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * cxd2880_integ.h4 * Sony CXD2880 DVB-T2/T tuner + demodulator driver5 * integration layer common interface6 *7 * Copyright (C) 2016, 2017, 2018 Sony Semiconductor Solutions Corporation8 */9 10#ifndef CXD2880_INTEG_H11#define CXD2880_INTEG_H12 13#include "cxd2880_tnrdmd.h"14 15#define CXD2880_TNRDMD_WAIT_INIT_TIMEOUT 50016#define CXD2880_TNRDMD_WAIT_INIT_INTVL 1017 18#define CXD2880_TNRDMD_WAIT_AGC_STABLE 10019 20int cxd2880_integ_init(struct cxd2880_tnrdmd *tnr_dmd);21 22int cxd2880_integ_cancel(struct cxd2880_tnrdmd *tnr_dmd);23 24int cxd2880_integ_check_cancellation(struct cxd2880_tnrdmd25 *tnr_dmd);26 27#endif28