blob: dd54512df2a5bb9a8074ad5d1ee439ee2eab60d5 [file] [log] [blame]
Ralph Metzler43dd07f2011-07-03 13:42:18 -03001#ifndef _DRXK_H_
2#define _DRXK_H_
3
4#include <linux/types.h>
5#include <linux/i2c.h>
6
Mauro Carvalho Chehab0fc55e82011-07-09 12:36:58 -03007struct drxk_config {
8 u8 adr;
Mauro Carvalho Chehabe076c922011-07-09 13:06:12 -03009 u32 single_master : 1;
Mauro Carvalho Chehabe4f4f872011-07-09 17:35:26 -030010 const char *microcode_name;
Mauro Carvalho Chehab0fc55e82011-07-09 12:36:58 -030011};
12
13extern struct dvb_frontend *drxk_attach(const struct drxk_config *config,
14 struct i2c_adapter *i2c,
Ralph Metzler43dd07f2011-07-03 13:42:18 -030015 struct dvb_frontend **fe_t);
16#endif