summaryrefslogtreecommitdiff
path: root/board/grunt/board.c
diff options
context:
space:
mode:
authorEdward Hill <ecgh@chromium.org>2018-03-23 16:18:37 -0600
committerchrome-bot <chrome-bot@chromium.org>2018-03-26 02:07:27 -0700
commit36e7c2498c90df0a4c5672ae8347dec6cca98689 (patch)
treeef7842ed178adb42e41eaeb9694e0e79df0b388a /board/grunt/board.c
parent5c611cedbfcff0c2fed25462b0477efcff014c36 (diff)
downloadchrome-ec-36e7c2498c90df0a4c5672ae8347dec6cca98689.tar.gz
stoney: Rename PGOOD GPIOs
Rename stoney power signals for clarity: SPOK -> S5_PGOOD VGATE -> S0_PGOOD BUG=none BRANCH=none TEST=power grunt on and off Change-Id: Iee8307138600c10868981a22971beace2de1ca91 Signed-off-by: Edward Hill <ecgh@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/978952 Reviewed-by: Justin TerAvest <teravest@chromium.org>
Diffstat (limited to 'board/grunt/board.c')
-rw-r--r--board/grunt/board.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/board/grunt/board.c b/board/grunt/board.c
index 0d057f98dd..be997ffd49 100644
--- a/board/grunt/board.c
+++ b/board/grunt/board.c
@@ -137,10 +137,10 @@ BUILD_ASSERT(ARRAY_SIZE(adc_channels) == ADC_CH_COUNT);
/* Power signal list. Must match order of enum power_signal. */
const struct power_signal_info power_signal_list[] = {
- {GPIO_PCH_SLP_S3_L, POWER_SIGNAL_ACTIVE_HIGH, "SLP_S3_DEASSERTED"},
- {GPIO_PCH_SLP_S5_L, POWER_SIGNAL_ACTIVE_HIGH, "SLP_S5_DEASSERTED"},
- {GPIO_VGATE, POWER_SIGNAL_ACTIVE_HIGH, "VGATE"},
- {GPIO_SPOK, POWER_SIGNAL_ACTIVE_HIGH, "SPOK"},
+ {GPIO_PCH_SLP_S3_L, POWER_SIGNAL_ACTIVE_HIGH, "SLP_S3_DEASSERTED"},
+ {GPIO_PCH_SLP_S5_L, POWER_SIGNAL_ACTIVE_HIGH, "SLP_S5_DEASSERTED"},
+ {GPIO_S0_PGOOD, POWER_SIGNAL_ACTIVE_HIGH, "S0_PGOOD"},
+ {GPIO_S5_PGOOD, POWER_SIGNAL_ACTIVE_HIGH, "S5_PGOOD"},
};
BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);