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