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 <amstan@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/209814
Reviewed-by: Chris Zhong <zyw@rock-chips.com>
Reviewed-by: Randall Spangler <rspangler@chromium.org>
This commit is contained in:
Alexandru M Stan
2014-07-24 14:15:24 -07:00
committed by chrome-internal-fetch
parent 915224b6d7
commit 37380d2312
2 changed files with 2 additions and 2 deletions

View File

@@ -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)

View File

@@ -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);
}
/**