summaryrefslogtreecommitdiff
path: root/chip/stm32/pwm_chip.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/stm32/pwm_chip.h')
-rw-r--r--chip/stm32/pwm_chip.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/chip/stm32/pwm_chip.h b/chip/stm32/pwm_chip.h
index baa793090a..7269072ac2 100644
--- a/chip/stm32/pwm_chip.h
+++ b/chip/stm32/pwm_chip.h
@@ -1,4 +1,4 @@
-/* Copyright 2013 The Chromium OS Authors. All rights reserved.
+/* Copyright 2013 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -29,7 +29,10 @@ struct pwm_t {
extern const struct pwm_t pwm_channels[];
/* Macro to fill in both timer ID and register base */
-#define STM32_TIM(x) {x, STM32_TIM_BASE(x)}
+#define STM32_TIM(x) \
+ { \
+ x, STM32_TIM_BASE(x) \
+ }
/* Plain ID mapping for readability */
#define STM32_TIM_CH(x) (x)