summaryrefslogtreecommitdiff
path: root/test/hooks.c
diff options
context:
space:
mode:
authorRandall Spangler <rspangler@chromium.org>2013-10-30 13:26:25 -0700
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2013-11-04 23:15:38 +0000
commit5d672b91a7f0d83e278b6f48dbd29105aabfb897 (patch)
treedfefdebf469d662a5c2b2db6653b3757973d9446 /test/hooks.c
parente297b7256344a2365da7f5675eac3340a58f5955 (diff)
downloadchrome-ec-5d672b91a7f0d83e278b6f48dbd29105aabfb897.tar.gz
Clean up hook priorties on LM4
Fan no longer needs a special priority to wait for the host memmap to become available, since LPC inits earlier. I2C and PECI don't need explicit ordering on freq change. Thermal now uses the explicit prio for temp sensors done. Commented hook test. BUG=chromium:314768 BRANCH=none TEST=boot link; enable/disable PLL; verify fanset and temps commands work afterwards. Change-Id: I71766614dff2950dd307acd0635405e6b59e330a Signed-off-by: Randall Spangler <rspangler@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/175601 Reviewed-by: Bill Richardson <wfrichar@chromium.org>
Diffstat (limited to 'test/hooks.c')
-rw-r--r--test/hooks.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/hooks.c b/test/hooks.c
index e688e610c2..0e3c4f0e0e 100644
--- a/test/hooks.c
+++ b/test/hooks.c
@@ -40,6 +40,7 @@ static void tick2_hook(void)
tick2_hook_count++;
tick_count_seen_by_tick2 = tick_hook_count;
}
+/* tick2_hook() prio means it should be called after tick_hook() */
DECLARE_HOOK(HOOK_TICK, tick2_hook, HOOK_PRIO_DEFAULT+1);
static void second_hook(void)