From 37380d2312da43c1aedde227a504edb757f83996 Mon Sep 17 00:00:00 2001 From: Alexandru M Stan Date: Thu, 24 Jul 2014 14:15:24 -0700 Subject: [PATCH] veyron: renamed PMIC_THERM_H -> PMIC_SOURCE_PWR_H It is now the proper name. BUG=None TEST=None, only name changed. EC should work as expected still. BRANCH=None Change-Id: Ia63db6fa0dc41750ebf31423c9870f8a463bf392 Signed-off-by: Alexandru M Stan Reviewed-on: https://chromium-review.googlesource.com/209814 Reviewed-by: Chris Zhong Reviewed-by: Randall Spangler --- board/veyron/gpio.inc | 2 +- power/rockchip.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/veyron/gpio.inc b/board/veyron/gpio.inc index 97a323c65e..865e3bbfab 100644 --- a/board/veyron/gpio.inc +++ b/board/veyron/gpio.inc @@ -49,7 +49,7 @@ GPIO(KB_OUT12, A, 13, GPIO_KB_OUTPUT, NULL) GPIO(BAT_LED0, B, 11, GPIO_OUT_LOW, NULL) GPIO(BAT_LED1, A, 11, GPIO_OUT_LOW, NULL) GPIO(EC_BL_OVERRIDE, H, 1, GPIO_OUT_HIGH, NULL) -GPIO(PMIC_THERM_H, B, 10, GPIO_OUT_LOW, NULL) +GPIO(PMIC_SOURCE_PWR_H, B, 10, GPIO_OUT_LOW, NULL) GPIO(PMIC_WARM_RESET_L, C, 3, GPIO_OUT_HIGH, NULL) GPIO(PMIC_USB_CTRL1_H, C, 6, GPIO_OUT_HIGH, NULL) diff --git a/power/rockchip.c b/power/rockchip.c index 38fa3461d9..81555ed7df 100644 --- a/power/rockchip.c +++ b/power/rockchip.c @@ -158,7 +158,7 @@ static void set_pmic_pwron(int asserted) static void set_pmic_source(int asserted) { /* Signal is active-high */ - gpio_set_level(GPIO_PMIC_THERM_H, asserted ? 1 : 0); + gpio_set_level(GPIO_PMIC_SOURCE_PWR_H, asserted ? 1 : 0); } /**