mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 07:42:39 +00:00
This commit brings code size optimization as suggested by Christer Weinigel review during review of initial commit for this driver. It also cleans up useless definition in header file. Change-Id: Ibeaa2e51570dff21825c60c30ba83d939b31d938 Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
17 lines
332 B
C
17 lines
332 B
C
/*
|
|
*
|
|
* Copyright (c) 2017 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _STM32_LL_CLOCK_H_
|
|
#define _STM32_LL_CLOCK_H_
|
|
|
|
void config_pll_init(LL_UTILS_PLLInitTypeDef *pllinit);
|
|
|
|
/* Section for functions not available in every Cube packages */
|
|
void LL_RCC_MSI_Disable(void);
|
|
|
|
#endif /* _STM32_LL_CLOCK_H_ */
|