blob: 5de47d4bef9a8138ba51add0785189bacdcc6fe0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef SI2157_H
#define SI2157_H
#include <linux/kconfig.h>
#include "dvb_frontend.h"
/*
* I2C address
* 0x60
*/
struct si2157_config {
/*
* frontend
*/
struct dvb_frontend *fe;
};
#endif
|