linux/drivers/media/dvb-frontends/mn88473.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0-or-later */
   2/*
   3 * Panasonic MN88473 DVB-T/T2/C demodulator driver
   4 *
   5 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
   6 */
   7
   8#ifndef MN88473_H
   9#define MN88473_H
  10
  11#include <linux/dvb/frontend.h>
  12
  13struct mn88473_config {
  14        /*
  15         * Max num of bytes given I2C adapter could write at once.
  16         * Default: unlimited
  17         */
  18        u16 i2c_wr_max;
  19
  20        /*
  21         * Xtal frequency Hz.
  22         * Default: 25000000
  23         */
  24        u32 xtal;
  25
  26
  27        /* Everything after that is returned by the driver. */
  28
  29        /*
  30         * DVB frontend.
  31         */
  32        struct dvb_frontend **fe;
  33};
  34
  35#endif
  36