blob: 6018851bdabdc3f06b37515ac2899d6527caae4e [file] [log] [blame]
Antti Palosaari930a8732014-04-10 21:58:10 -03001#ifndef SI2157_PRIV_H
2#define SI2157_PRIV_H
3
4#include "si2157.h"
5
6/* state struct */
7struct si2157 {
8 struct mutex i2c_mutex;
9 struct i2c_client *client;
10 struct dvb_frontend *fe;
11 bool active;
12};
13
14/* firmare command struct */
15#define SI2157_ARGLEN 30
16struct si2157_cmd {
17 u8 args[SI2157_ARGLEN];
18 unsigned len;
19};
20
21#endif