eventpoll.h: add missing epoll event masks
[linux/fpc-iii.git] / drivers / media / dvb-frontends / mn88472.h
blob095294d292f36bf97f5a2709866020e4a85d2621
1 /*
2 * Panasonic MN88472 DVB-T/T2/C demodulator driver
4 * Copyright (C) 2013 Antti Palosaari <crope@iki.fi>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #ifndef MN88472_H
18 #define MN88472_H
20 #include <linux/dvb/frontend.h>
22 enum ts_clock {
23 VARIABLE_TS_CLOCK,
24 FIXED_TS_CLOCK,
27 enum ts_mode {
28 SERIAL_TS_MODE,
29 PARALLEL_TS_MODE,
32 struct mn88472_config {
34 * Max num of bytes given I2C adapter could write at once.
35 * Default: none
37 u16 i2c_wr_max;
40 /* Everything after that is returned by the driver. */
43 * DVB frontend.
45 struct dvb_frontend **fe;
48 * Xtal frequency.
49 * Hz
51 u32 xtal;
52 int ts_mode;
53 int ts_clock;
56 #endif