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