aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/google/slippy/ec.c
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2013-05-22 16:13:49 -0700
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2013-11-24 06:26:30 +0100
commitd80cd2ad80b2b9debfce1fce5f94c773cb51c8cc (patch)
treeba390a5febfe561fa9f22f1bc5cba059d60809cc /src/mainboard/google/slippy/ec.c
parentcfe0235c6fb5574b54139c6e7bd31da974e4ef23 (diff)
slippy: Clean up for easier porting
Minor tweaks to variable names in the slippy mainboard that make it easier to base a new board from without as much renaming. Also properly set up the thermal variables for the thermal zone that is defined in ACPI instead of using the generic setup from WTM2. Change-Id: I752c1a50bfdc06b6ddad95bd1331c6870b9f9df2 Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Reviewed-on: https://gerrit.chromium.org/gerrit/56328 Reviewed-on: http://review.coreboot.org/4183 Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/mainboard/google/slippy/ec.c')
-rw-r--r--src/mainboard/google/slippy/ec.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mainboard/google/slippy/ec.c b/src/mainboard/google/slippy/ec.c
index 3c2598739b..0919f0feec 100644
--- a/src/mainboard/google/slippy/ec.c
+++ b/src/mainboard/google/slippy/ec.c
@@ -24,25 +24,25 @@
#include <ec/google/chromeec/ec.h>
#include "ec.h"
-void slippy_ec_init(void)
+void mainboard_ec_init(void)
{
- printk(BIOS_DEBUG, "slippy_ec_init\n");
+ printk(BIOS_DEBUG, "mainboard_ec_init\n");
post_code(0xf0);
/* Restore SCI event mask on resume. */
if (acpi_slp_type == 3) {
- google_chromeec_log_events(SLIPPY_EC_LOG_EVENTS |
- SLIPPY_EC_S3_WAKE_EVENTS);
+ google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS |
+ MAINBOARD_EC_S3_WAKE_EVENTS);
/* Disable SMI and wake events */
google_chromeec_set_smi_mask(0);
/* Clear pending events */
while (google_chromeec_get_event() != 0);
- google_chromeec_set_sci_mask(SLIPPY_EC_SCI_EVENTS);
+ google_chromeec_set_sci_mask(MAINBOARD_EC_SCI_EVENTS);
} else {
- google_chromeec_log_events(SLIPPY_EC_LOG_EVENTS |
- SLIPPY_EC_S5_WAKE_EVENTS);
+ google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS |
+ MAINBOARD_EC_S5_WAKE_EVENTS);
}
/* Clear wake events, these are enabled on entry to sleep */