swh:1:snp:3c665ee4f67729f27f2e40193ab88e7298cf0fef
Raw File
Tip revision: 9123e3a74ec7b934a4a099e98af6a61c2f80bbf5 authored by Linus Torvalds on 16 August 2020, 20:04:57 UTC
Linux 5.9-rc1
Tip revision: 9123e3a
tda18212.h
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * NXP TDA18212HN silicon tuner driver
 *
 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
 */

#ifndef TDA18212_H
#define TDA18212_H

#include <media/dvb_frontend.h>

struct tda18212_config {
	u16 if_dvbt_6;
	u16 if_dvbt_7;
	u16 if_dvbt_8;
	u16 if_dvbt2_5;
	u16 if_dvbt2_6;
	u16 if_dvbt2_7;
	u16 if_dvbt2_8;
	u16 if_dvbc;
	u16 if_atsc_vsb;
	u16 if_atsc_qam;

	/*
	 * pointer to DVB frontend
	 */
	struct dvb_frontend *fe;
};

#endif
back to top