devicetree: Change DT_FOREACH_IMPL_ to not insert semicolon

Remove semicolon between instance invocations of DT_FOREACH_IMPL_ and
thus DT_INST_FOREACH.  This provides more flexibility to the user.  This
requires we fixup in tree users to add semicolon where needed.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-05-07 14:09:05 -05:00 committed by Kumar Gala
commit 0a7d4e2135
50 changed files with 52 additions and 52 deletions

View file

@ -111,6 +111,6 @@ static const struct dac_driver_api mcux_dac32_driver_api = {
mcux_dac32_init, &mcux_dac32_data_##n, \
&mcux_dac32_config_##n, \
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,\
&mcux_dac32_driver_api)
&mcux_dac32_driver_api);
DT_INST_FOREACH(MCUX_DAC32_INIT)