1
2#ifndef _DEV_I2C_MT2131VAR_H_
3#define _DEV_I2C_MT2131VAR_H_
4
5#include <dev/i2c/i2cvar.h>
6#include <dev/dtv/dtvio.h>
7
8struct mt2131_softc;
9
10struct mt2131_softc * mt2131_open(device_t, i2c_tag_t, i2c_addr_t);
11void mt2131_close(struct mt2131_softc *);
12int mt2131_tune_dtv(struct mt2131_softc *, const struct dvb_frontend_parameters *);
13int mt2131_get_status(struct mt2131_softc *);
14
15#endif /* !_DEV_I2C_MT2131VAR_H_ */
16