mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2023-10-10 13:37:43 +02:00
18 lines
280 B
C
18 lines
280 B
C
#ifndef _STV0367DD_H_
|
|
#define _STV0367DD_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/i2c.h>
|
|
|
|
struct stv0367_cfg {
|
|
u8 adr;
|
|
u32 xtal;
|
|
u8 parallel;
|
|
u8 cont_clock;
|
|
};
|
|
|
|
|
|
extern struct dvb_frontend *stv0367_attach(struct i2c_adapter *i2c,
|
|
struct stv0367_cfg *cfg);
|
|
#endif
|