:orphan: .. title:: CONFIG_CLOCK_CONTROL_STM32_DEVICE_INIT_PRIORITY .. kconfig:: CONFIG_CLOCK_CONTROL_STM32_DEVICE_INIT_PRIORITY CONFIG_CLOCK_CONTROL_STM32_DEVICE_INIT_PRIORITY ############################################### *Clock Control Device Priority* Type: ``int`` Help ==== .. code-block:: none This option controls the priority of clock control device initialization. Higher priority ensures that the device is initialized earlier in the startup cycle. If unsure, leave at default value 1 Direct dependencies =================== \ :kconfig:`CLOCK_CONTROL_STM32_CUBE ` && \ :kconfig:`CLOCK_CONTROL ` *(Includes any dependencies from ifs and menus.)* Default ======= - 1 Kconfig definition ================== At ``/clock_control/Kconfig.stm32:18`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:56`` → ``/clock_control/Kconfig:25`` Menu path: (Top) → Device Drivers → Hardware clock controller support → STM32 Reset & Clock Control .. code-block:: kconfig config CLOCK_CONTROL_STM32_DEVICE_INIT_PRIORITY int "Clock Control Device Priority" default 1 depends on CLOCK_CONTROL_STM32_CUBE && CLOCK_CONTROL help This option controls the priority of clock control device initialization. Higher priority ensures that the device is initialized earlier in the startup cycle. If unsure, leave at default value 1 *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*