usb: phy-fsm: Staticize local symbols
authorSachin Kamat <sachin.kamat@linaro.org>
Sat, 21 Dec 2013 09:50:08 +0000 (15:20 +0530)
committerFelipe Balbi <balbi@ti.com>
Mon, 23 Dec 2013 16:13:33 +0000 (10:13 -0600)
Local symbols appearing only in this file are made static.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/phy/phy-fsm-usb.c

index 65c3a728ef4fa592f137c43d750460b7c15fad18..7aa314ef4a8ade13bac4ba73b41645d1b522dd84 100644 (file)
@@ -64,7 +64,7 @@ static int otg_set_protocol(struct otg_fsm *fsm, int protocol)
 static int state_changed;
 
 /* 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) {
        case OTG_STATE_B_IDLE:
@@ -121,7 +121,7 @@ void otg_leave_state(struct otg_fsm *fsm, enum usb_otg_state old_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;
        if (fsm->otg->phy->state == new_state)