bd6e04411e
Use this short header style in all Kconfig files: # <description> # <copyright> # <license> ... Also change all <description>s from # Kconfig[.extension] - Foo-related options to just # Foo-related options It's clear enough that it's about Kconfig. The <description> cleanup was done with this command, along with some manual cleanup (big letter at the start, etc.) git ls-files '*Kconfig*' | \ xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
42 lines
1 KiB
Plaintext
42 lines
1 KiB
Plaintext
# Clock controller driver configuration options
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
# Clock controller drivers
|
|
#
|
|
menuconfig CLOCK_CONTROL
|
|
bool "Hardware clock controller support"
|
|
help
|
|
Enable support for hardware clock controller. Such hardware can
|
|
provide clock for other subsystem, and thus can be also used for
|
|
power efficiency by controlling their clock. Note that this has
|
|
nothing to do with RTC.
|
|
|
|
if CLOCK_CONTROL
|
|
|
|
module = CLOCK_CONTROL
|
|
module-str = clock control
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/clock_control/Kconfig.nrf"
|
|
|
|
source "drivers/clock_control/Kconfig.stm32"
|
|
|
|
source "drivers/clock_control/Kconfig.beetle"
|
|
|
|
source "drivers/clock_control/Kconfig.mcux_ccm"
|
|
|
|
source "drivers/clock_control/Kconfig.mcux_mcg"
|
|
|
|
source "drivers/clock_control/Kconfig.mcux_pcc"
|
|
|
|
source "drivers/clock_control/Kconfig.mcux_scg"
|
|
|
|
source "drivers/clock_control/Kconfig.mcux_sim"
|
|
|
|
source "drivers/clock_control/Kconfig.rv32m1"
|
|
|
|
endif # CLOCK_CONTROL
|