diff options
author | Randall Spangler <rspangler@chromium.org> | 2013-10-30 13:26:25 -0700 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2013-11-04 23:15:38 +0000 |
commit | 5d672b91a7f0d83e278b6f48dbd29105aabfb897 (patch) | |
tree | dfefdebf469d662a5c2b2db6653b3757973d9446 /common/fan.c | |
parent | e297b7256344a2365da7f5675eac3340a58f5955 (diff) | |
download | chrome-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 'common/fan.c')
-rw-r--r-- | common/fan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/fan.c b/common/fan.c index 874b73537b..b080253944 100644 --- a/common/fan.c +++ b/common/fan.c @@ -373,7 +373,7 @@ static void pwm_fan_init(void) for (i = 0; i < EC_FAN_SPEED_ENTRIES; i++) mapped[i] = EC_FAN_SPEED_NOT_PRESENT; } -DECLARE_HOOK(HOOK_INIT, pwm_fan_init, HOOK_PRIO_DEFAULT + 1); +DECLARE_HOOK(HOOK_INIT, pwm_fan_init, HOOK_PRIO_DEFAULT); static void pwm_fan_second(void) { |