summaryrefslogtreecommitdiff
path: root/test/usb_sm_framework_h3.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 /test/usb_sm_framework_h3.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 'test/usb_sm_framework_h3.c')
-rw-r--r--test/usb_sm_framework_h3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/usb_sm_framework_h3.c b/test/usb_sm_framework_h3.c
index e8e209a5c4..a87002bedf 100644
--- a/test/usb_sm_framework_h3.c
+++ b/test/usb_sm_framework_h3.c
@@ -979,7 +979,7 @@ int test_task(void *u)
/* wait for next event/packet or timeout expiration */
task_wait_event(-1);
/* run state machine */
- exe_state(port, &sm[port].ctx);
+ run_state(port, &sm[port].ctx);
}
return EC_SUCCESS;