kconfig: Use 'CONFIG_FOO_*' in #endif comments to avoid CI failures

https://github.com/zephyrproject-rtos/ci-tools/pull/65 tweaks the check
for references to undefined Kconfig symbol to whitelist anything on the
form 'CONFIG_FOO_*' (or 'CONFIG_FOO_*_...'). This is meant for #endif
comments that talk about many related symbols.

Fix two existing #endif comments to use that format, so that some
entries can be removed from the whitelist in the CI check.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
This commit is contained in:
Ulf Magnusson 2019-05-17 23:23:10 +02:00 committed by Kumar Gala
commit ea5866e5f0
2 changed files with 2 additions and 2 deletions

View file

@ -344,7 +344,7 @@ static int stm32_clock_control_init(struct device *dev)
LL_RCC_HSI_Disable();
LL_RCC_MSI_Disable();
#endif /* CONFIG_CLOCK_STM32_PLL_SRC_... */
#endif /* CONFIG_CLOCK_STM32_PLL_SRC_* */
#elif CONFIG_CLOCK_STM32_SYSCLK_SRC_HSE