Lines Matching refs:it_softc
60 u_int8_t it_readreg(struct it_softc *, int);
61 void it_writereg(struct it_softc *, int, int);
62 void it_setup_volt(struct it_softc *, int, int);
63 void it_setup_temp(struct it_softc *, int, int);
64 void it_setup_fan(struct it_softc *, int, int);
66 void it_generic_stemp(struct it_softc *, struct ksensor *);
67 void it_generic_svolt(struct it_softc *, struct ksensor *);
68 void it_generic_fanrpm(struct it_softc *, struct ksensor *);
70 void it_refresh_sensor_data(struct it_softc *);
86 sizeof (struct it_softc)
138 struct it_softc *sc = device_get_softc(dev); in it_attach()
178 struct it_softc *sc = device_get_softc(dev); in it_detach()
193 it_readreg(struct it_softc *sc, int reg) in it_readreg()
200 it_writereg(struct it_softc *sc, int reg, int val) in it_writereg()
207 it_setup_volt(struct it_softc *sc, int start, int n) in it_setup_volt()
236 it_setup_temp(struct it_softc *sc, int start, int n) in it_setup_temp()
245 it_setup_fan(struct it_softc *sc, int start, int n) in it_setup_fan()
254 it_generic_stemp(struct it_softc *sc, struct ksensor *sensors) in it_generic_stemp()
266 it_generic_svolt(struct it_softc *sc, struct ksensor *sensors) in it_generic_svolt()
288 it_generic_fanrpm(struct it_softc *sc, struct ksensor *sensors) in it_generic_fanrpm()
320 it_refresh_sensor_data(struct it_softc *sc) in it_refresh_sensor_data()
331 struct it_softc *sc = (struct it_softc *)arg; in it_refresh()