summaryrefslogtreecommitdiff
path: root/board/peppy
diff options
context:
space:
mode:
authorBill Richardson <wfrichar@chromium.org>2013-10-07 13:20:58 -0700
committerBill Richardson <wfrichar@chromium.org>2013-10-10 15:16:06 +0000
commit2fb228c198d2581df4c90bd94f0240737a9db134 (patch)
tree1a64ab9e540c98e814fc8ad3019df204471ec6bf /board/peppy
parentff8c8fee79e148567c0f2128db69563acb29ee54 (diff)
downloadchrome-ec-2fb228c198d2581df4c90bd94f0240737a9db134.tar.gz
cleanup: Don't use [N] = {} when initializing arrays
If we do this: enum foo_v { FOO_A, FOO_B, FOO_COUNT }; struct foo_t foo[] = { {...}, {...}, }; BUILD_ASSERT(ARRAY_SIZE(foo) == FOO_COUNT); Then we can be sure we're at least initialized all the elements of foo, although there's no particular guarantee that the order is correct. However, if we use this: struct foo_t foo[] = { [FOO_A] = {...}, [FOO_B] = {...}, }; and we accidentally get one wrong: struct foo_t foo[] = { [FOO_B] = {...}, [FOO_B] = {...}, }; Then the assertion still passes, but we've only initialized one element. Don't do that. BUG=chrome-os-partner:18343 BRANCH=none TEST=manual Refactoring only. Build everything. It should still work. Change-Id: I58f659207990f18c6fb74b1cac2ec1163cdb07ea Signed-off-by: Bill Richardson <wfrichar@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/172115 Reviewed-by: Randall Spangler <rspangler@chromium.org>
Diffstat (limited to 'board/peppy')
-rw-r--r--board/peppy/board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/peppy/board.c b/board/peppy/board.c
index 730e1e17d9..f1d55dd738 100644
--- a/board/peppy/board.c
+++ b/board/peppy/board.c
@@ -176,9 +176,9 @@ const struct adc_t adc_channels[] = {
};
BUILD_ASSERT(ARRAY_SIZE(adc_channels) == ADC_CH_COUNT);
-/* PWM channels */
+/* PWM channels. Must be in the exactly same order as in enum pwm_channel. */
const struct pwm_t pwm_channels[] = {
- [PWM_CH_FAN] = {CONFIG_FAN_CH_CPU, PWM_CONFIG_HAS_RPM_MODE},
+ {CONFIG_FAN_CH_CPU, PWM_CONFIG_HAS_RPM_MODE},
};
BUILD_ASSERT(ARRAY_SIZE(pwm_channels) == PWM_CH_COUNT);