Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66668991 authored by Peter Chen's avatar Peter Chen Committed by Felipe Balbi
Browse files

usb: phy: fsm: change "|" to "||" for condition OTG_STATE_A_WAIT_BCON at statemachine



We should be using logical "or" not bitwise "or".

Signed-off-by: default avatarPeter Chen <peter.chen@freescale.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 2284bb35
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -314,7 +314,7 @@ int otg_statemachine(struct otg_fsm *fsm)
			otg_set_state(fsm, OTG_STATE_A_VBUS_ERR);
		else if (fsm->b_conn)
			otg_set_state(fsm, OTG_STATE_A_HOST);
		else if (fsm->id | fsm->a_bus_drop | fsm->a_wait_bcon_tmout)
		else if (fsm->id || fsm->a_bus_drop || fsm->a_wait_bcon_tmout)
			otg_set_state(fsm, OTG_STATE_A_WAIT_VFALL);
		break;
	case OTG_STATE_A_HOST: