D | otg-fsm.h | 191 void (*chrg_vbus)(struct otg_fsm *fsm, int on); 192 void (*drv_vbus)(struct otg_fsm *fsm, int on); 193 void (*loc_conn)(struct otg_fsm *fsm, int on); 194 void (*loc_sof)(struct otg_fsm *fsm, int on); 200 int (*start_host)(struct otg_fsm *fsm, int on); 201 int (*start_gadget)(struct otg_fsm *fsm, int on); 205 static inline int otg_chrg_vbus(struct otg_fsm *fsm, int on) in otg_chrg_vbus() argument 209 fsm->ops->chrg_vbus(fsm, on); in otg_chrg_vbus() 213 static inline int otg_drv_vbus(struct otg_fsm *fsm, int on) in otg_drv_vbus() argument 217 if (fsm->drv_vbus != on) { in otg_drv_vbus() [all …]
|