blob: b8b75c8cfda002c6d1a5757359ae4b84ec7fd948 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * Panasonic MN88473 DVB-T/T2/C demodulator driver
4 *
5 * Copyright (C) 2014 Antti Palosaari <crope@iki.fi>
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
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