summaryrefslogtreecommitdiff
path: root/board/puppy
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/puppy
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/puppy')
-rw-r--r--board/puppy/board.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/board/puppy/board.c b/board/puppy/board.c
index f874ed2ad5..db275818ab 100644
--- a/board/puppy/board.c
+++ b/board/puppy/board.c
@@ -109,10 +109,10 @@ const struct i2c_port_t i2c_ports[] = {
};
const unsigned int i2c_ports_used = ARRAY_SIZE(i2c_ports);
-/* PWM channels */
+/* PWM channels. Must be in the exactly same order as in enum pwm_channel. */
const struct pwm_t pwm_channels[] = {
- [PWM_CH_POWER_LED] = {STM32_TIM(2), STM32_TIM_CH(3),
- PWM_CONFIG_ACTIVE_LOW, GPIO_LED_POWER_L},
+ {STM32_TIM(2), STM32_TIM_CH(3),
+ PWM_CONFIG_ACTIVE_LOW, GPIO_LED_POWER_L},
};
BUILD_ASSERT(ARRAY_SIZE(pwm_channels) == PWM_CH_COUNT);