D | otg-fsm.h | 203 void (*chrg_vbus)(struct otg_fsm *fsm, int on); 204 void (*drv_vbus)(struct otg_fsm *fsm, int on); 205 void (*loc_conn)(struct otg_fsm *fsm, int on); 206 void (*loc_sof)(struct otg_fsm *fsm, int on); 212 int (*start_host)(struct otg_fsm *fsm, int on); 213 int (*start_gadget)(struct otg_fsm *fsm, int on); 217 static inline int otg_chrg_vbus(struct otg_fsm *fsm, int on) in otg_chrg_vbus() argument 221 fsm->ops->chrg_vbus(fsm, on); in otg_chrg_vbus() 225 static inline int otg_drv_vbus(struct otg_fsm *fsm, int on) in otg_drv_vbus() argument 229 if (fsm->drv_vbus != on) { in otg_drv_vbus() [all …]
|