From 0d97809b44ad35fbddb0d72f18f5cffbe58e8824 Mon Sep 17 00:00:00 2001 From: Kyoung Kim Date: Tue, 5 Sep 2017 18:54:05 -0700 Subject: [PATCH] ISH: inclued header for sleep mask Fix errors due to missing definition of enable_sleep/disable_sleep. BUG=None BRANCH=master Test='make -j buildall' Change-Id: Ia9cb21d8a85241be2d6a675eb4b2c1186aef9d8a Signed-off-by: Kyoung Kim Reviewed-on: https://chromium-review.googlesource.com/651139 Commit-Ready: Kyoung Il Kim Tested-by: Kyoung Il Kim Reviewed-by: Aaron Durbin --- chip/ish/uart.c | 1 + 1 file changed, 1 insertion(+) diff --git a/chip/ish/uart.c b/chip/ish/uart.c index cd05aee329..96a55f94c7 100644 --- a/chip/ish/uart.c +++ b/chip/ish/uart.c @@ -13,6 +13,7 @@ #include "uart.h" #include "uart_defs.h" #include "interrupts.h" +#include "system.h" #define CPUTS(outstr) cputs(CC_LPC, outstr) #define CPRINTS(format, args...) cprints(CC_LPC, format, ## args)