Home | History | Annotate | Line # | Download | only in i2c
      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 
      8 struct mt2131_softc;
      9 
     10 struct mt2131_softc * mt2131_open(device_t, i2c_tag_t, i2c_addr_t);
     11 void mt2131_close(struct mt2131_softc *);
     12 int mt2131_tune_dtv(struct mt2131_softc *, const struct dvb_frontend_parameters *);
     13 int mt2131_get_status(struct mt2131_softc *);
     14 
     15 #endif /* !_DEV_I2C_MT2131VAR_H_ */
     16