root/drivers/media/tuners/tda18212.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0-or-later */
   2 /*
   3  * NXP TDA18212HN silicon tuner driver
   4  *
   5  * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
   6  */
   7 
   8 #ifndef TDA18212_H
   9 #define TDA18212_H
  10 
  11 #include <media/dvb_frontend.h>
  12 
  13 struct tda18212_config {
  14         u16 if_dvbt_6;
  15         u16 if_dvbt_7;
  16         u16 if_dvbt_8;
  17         u16 if_dvbt2_5;
  18         u16 if_dvbt2_6;
  19         u16 if_dvbt2_7;
  20         u16 if_dvbt2_8;
  21         u16 if_dvbc;
  22         u16 if_atsc_vsb;
  23         u16 if_atsc_qam;
  24 
  25         /*
  26          * pointer to DVB frontend
  27          */
  28         struct dvb_frontend *fe;
  29 };
  30 
  31 #endif

/* [<][>][^][v][top][bottom][index][help] */