summaryrefslogtreecommitdiff
path: root/common/usbc/usb_prl_sm.c
diff options
context:
space:
mode:
authorEdward Hill <ecgh@chromium.org>2019-10-08 16:25:10 -0600
committerCommit Bot <commit-bot@chromium.org>2019-10-15 22:34:41 +0000
commitaa180fc2aa10c94d472d1b80fcf335f3d0d54de9 (patch)
treeb3b3a2c45502f0afb2e2ad23cad31b0a858ac8d0 /common/usbc/usb_prl_sm.c
parent246e451f5229a392bbcded28eaa16c8c47c4d5d1 (diff)
downloadchrome-ec-aa180fc2aa10c94d472d1b80fcf335f3d0d54de9.tar.gz
usbc: rename exe_state to run_state
Just a simple rename. run_state() seems more readable to me, and "run" is used in many of the related functions and comments. exe_state used to be called sm_run_state_machine before the great refactoring of CL:1733744. BRANCH=none BUG=none TEST=build Change-Id: I5fe9e5b98042d7a5b9b9e9bde48ebecbda420458 Signed-off-by: Edward Hill <ecgh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/1848970 Reviewed-by: Denis Brockus <dbrockus@chromium.org> Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'common/usbc/usb_prl_sm.c')
-rw-r--r--common/usbc/usb_prl_sm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/common/usbc/usb_prl_sm.c b/common/usbc/usb_prl_sm.c
index 5bb8ea1d8a..745aca2de5 100644
--- a/common/usbc/usb_prl_sm.c
+++ b/common/usbc/usb_prl_sm.c
@@ -423,16 +423,16 @@ void prl_run(int port, int evt, int en)
prl_rx_wait_for_phy_message(port, evt);
/* Run RX Chunked state machine */
- exe_state(port, &rch[port].ctx);
+ run_state(port, &rch[port].ctx);
/* Run TX Chunked state machine */
- exe_state(port, &tch[port].ctx);
+ run_state(port, &tch[port].ctx);
/* Run Protocol Layer Message Transmission state machine */
- exe_state(port, &prl_tx[port].ctx);
+ run_state(port, &prl_tx[port].ctx);
/* Run Protocol Layer Hard Reset state machine */
- exe_state(port, &prl_hr[port].ctx);
+ run_state(port, &prl_hr[port].ctx);
break;
}
}