From cdaf11549f94f7b35c3bda986b5dbcca3e65e317 Mon Sep 17 00:00:00 2001 From: Anton Staaf Date: Wed, 13 Jan 2016 10:39:52 -0800 Subject: GPIO: Use gpio_set_flags instead of ..._by_mask By using gpio_set_flags where we can we remove dependencies on gpio_list and gpio_info. Signed-off-by: Anton Staaf BRANCH=None BUG=None TEST=make buildall -j Change-Id: Ie5056a27b69e9c8702da90678ad7be014a04259a Reviewed-on: https://chromium-review.googlesource.com/321912 Commit-Ready: Anton Staaf Tested-by: Anton Staaf Reviewed-by: Randall Spangler --- board/wheatley/board.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'board/wheatley') diff --git a/board/wheatley/board.c b/board/wheatley/board.c index 745a31dfc7..143642c3e0 100644 --- a/board/wheatley/board.c +++ b/board/wheatley/board.c @@ -413,7 +413,6 @@ void board_set_gpio_state_hibernate(void) static void board_handle_reboot(void) { int flags; - const struct gpio_info *g = &gpio_list[GPIO_BATLOW_L_PMIC_LDO_EN]; if (system_jumped_to_this_image()) return; @@ -432,7 +431,7 @@ static void board_handle_reboot(void) cflush(); /* Bring down all rails but RTC rail (including EC power). */ - gpio_set_flags_by_mask(g->port, g->mask, GPIO_OUT_HIGH); + gpio_set_flags(GPIO_BATLOW_L_PMIC_LDO_EN, GPIO_OUT_HIGH); while (1) ; /* wait here */ } -- cgit v1.2.1