We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e58f82 commit 798a1dbCopy full SHA for 798a1db
drivers/ipm/ipm_stm32_hsem.c
@@ -207,15 +207,16 @@ static const struct stm32_hsem_mailbox_config stm32_hsem_mailbox_0_config = {
207
* a virtual mailbox device. So there will have only one instance.
208
*/
209
#define IPM_STM32_HSEM_INIT(inst) \
210
- BUILD_ASSERT((inst) == 0, \
211
- "multiple instances not supported"); \
212
- DEVICE_DT_INST_DEFINE(0, \
213
- &stm32_hsem_mailbox_init, \
214
- NULL, \
215
- &stm32_hsem_mailbox_0_data, \
216
- &stm32_hsem_mailbox_0_config, \
217
- POST_KERNEL, \
218
- CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \
219
- &stm32_hsem_mailbox_ipm_dirver_api); \
+ BUILD_ASSERT((inst) == 0, \
+ "multiple instances not supported"); \
+ \
+ DEVICE_DT_INST_DEFINE(0, \
+ &stm32_hsem_mailbox_init, \
+ NULL, \
+ &stm32_hsem_mailbox_0_data, \
+ &stm32_hsem_mailbox_0_config, \
+ POST_KERNEL, \
+ CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \
220
+ &stm32_hsem_mailbox_ipm_dirver_api);
221
222
DT_INST_FOREACH_STATUS_OKAY(IPM_STM32_HSEM_INIT)
0 commit comments