Lines Matching defs:mpl115a_softc
58 struct mpl115a_softc {
80 static uint8_t mpl115a_reg_read_1(struct mpl115a_softc *sc, uint8_t);
81 static void mpl115a_reg_write_1(struct mpl115a_softc *sc, uint8_t, uint8_t);
83 static void mpl115a_load_coeffs(struct mpl115a_softc *sc);
85 static uint32_t mpl115a_pressure(struct mpl115a_softc *sc);
86 static uint32_t mpl115a_calc(struct mpl115a_softc *sc, uint16_t padc, uint16_t tadc) ;
88 static void mpl115a_envsys_register(struct mpl115a_softc *);
91 CFATTACH_DECL_NEW(mpl115a, sizeof (struct mpl115a_softc),
107 struct mpl115a_softc *sc = device_private(self);
142 mpl115a_load_coeffs(struct mpl115a_softc *sc)
155 mpl115a_reg_write_1(struct mpl115a_softc *sc, uint8_t reg, uint8_t val)
170 mpl115a_reg_read_1(struct mpl115a_softc *sc, uint8_t reg)
198 mpl115a_pressure(struct mpl115a_softc *sc)
232 mpl115a_calc(struct mpl115a_softc *sc, uint16_t padc, uint16_t tadc)
265 mpl115a_envsys_register(struct mpl115a_softc *sc)
294 struct mpl115a_softc *sc = sme->sme_cookie;