Commit 7410f172 authored by Sachin Kamat's avatar Sachin Kamat Committed by Felipe Balbi

usb: phy-fsm: Staticize local symbols

Local symbols appearing only in this file are made static.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent ed40082d
...@@ -64,7 +64,7 @@ static int otg_set_protocol(struct otg_fsm *fsm, int protocol) ...@@ -64,7 +64,7 @@ static int otg_set_protocol(struct otg_fsm *fsm, int protocol)
static int state_changed; static int state_changed;
/* Called when leaving a state. Do state clean up jobs here */ /* Called when leaving a state. Do state clean up jobs here */
void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state) static void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state)
{ {
switch (old_state) { switch (old_state) {
case OTG_STATE_B_IDLE: case OTG_STATE_B_IDLE:
...@@ -121,7 +121,7 @@ void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state) ...@@ -121,7 +121,7 @@ void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_state)
} }
/* Called when entering a state */ /* Called when entering a state */
int otg_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state) static int otg_set_state(struct otg_fsm *fsm, enum usb_otg_state new_state)
{ {
state_changed = 1; state_changed = 1;
if (fsm->otg->phy->state == new_state) if (fsm->otg->phy->state == new_state)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment