From 0eb94470511959c09e5cb0f55eda0478dd5c7b04 Mon Sep 17 00:00:00 2001 From: Louis Yung-Chieh Lo Date: Tue, 3 Apr 2012 11:55:29 +0800 Subject: [PATCH] Fix the build error on adv board. BUG=none TEST=successfully BOARD=adv make. Change-Id: I75e0f1e0487f52411c0c50b804e8997065f4e06c --- common/vboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/vboot.c b/common/vboot.c index 6a06748f8d..ba05f2b4ba 100644 --- a/common/vboot.c +++ b/common/vboot.c @@ -31,7 +31,7 @@ static void jump_to_other_image(void) if (system_jumped_to_this_image()) return; -#if !defined(BOARD_daisy) && !defined(BOARD_discovery) +#if !defined(BOARD_daisy) && !defined(BOARD_discovery) && !defined(BOARD_adv) /* TODO: (crosbug.com/p/8572) Daisy and discovery don't define a GPIO * for the recovery signal from servo, so can't check it. */ if (gpio_get_level(GPIO_RECOVERYn) == 0) {