Home | History | Annotate | Download | only in i2c

Lines Matching refs:ppath

403 	uint8_t intr, intrmask, status, ppath;
415 ppath = tps65217pmic_reg_read(sc, TPS65217PMIC_PPATH);
423 sc->sc_usbenabled = ppath & TPS65217PMIC_PPATH_USB_EN;
424 sc->sc_acenabled = ppath & TPS65217PMIC_PPATH_AC_EN;
591 tps65217pmic_ppath_max_ac_current(uint8_t ppath)
593 switch ((ppath & TPS65217PMIC_PPATH_IAC) >>
608 tps65217pmic_ppath_max_usb_current(uint8_t ppath)
610 switch (ppath & TPS65217PMIC_PPATH_IUSB) {
715 uint8_t status, ppath;
717 ppath = tps65217pmic_reg_read(sc, TPS65217PMIC_PPATH);
722 if (ppath & TPS65217PMIC_PPATH_USB_EN) {
728 tps65217pmic_ppath_max_usb_current(ppath));
731 if (ppath & TPS65217PMIC_PPATH_AC_EN) {
737 tps65217pmic_ppath_max_ac_current(ppath));