mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-09 01:42:53 +00:00
Bool symbols implicitly default to 'n'. A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you want to override a 'default y' on the base definition of the symbol. It isn't used like that on any of these symbols though, and is inconsistent. This will make the auto-generated Kconfig documentation have "No defaults. Implicitly defaults to n." as well, which is clearer than 'default n if ...' Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
55 lines
1.3 KiB
Plaintext
55 lines
1.3 KiB
Plaintext
# Kconfig - Clock controller driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig CLOCK_CONTROL_QUARK_SE
|
|
bool
|
|
prompt "Quark SE Clock controller support"
|
|
help
|
|
Enable support for the Quark SE clock driver.
|
|
|
|
if CLOCK_CONTROL_QUARK_SE
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_PERIPHERAL
|
|
bool
|
|
prompt "Quark SE peripheral clock support"
|
|
help
|
|
Enable support for Quark SE peripheral clock which controls the
|
|
clock of I2C, SPI, GPIO controllers and more.
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_PERIPHERAL_DRV_NAME
|
|
string
|
|
prompt "Quark SE peripheral clock device name"
|
|
depends on CLOCK_CONTROL_QUARK_SE_PERIPHERAL
|
|
default "clk_peripheral"
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_EXTERNAL
|
|
bool
|
|
prompt "Quark SE external clock support"
|
|
help
|
|
Enable support for Quark SE external sub-system clock.
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_EXTERNAL_DRV_NAME
|
|
string
|
|
prompt "Quark SE external clock device name"
|
|
depends on CLOCK_CONTROL_QUARK_SE_EXTERNAL
|
|
default "clk_external"
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_SENSOR
|
|
bool
|
|
prompt "Quark SE sensor clock support"
|
|
help
|
|
Enable support for Quark SE sensor sub-system clock.
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_SENSOR_DRV_NAME
|
|
string
|
|
prompt "Quark SE sensor clock device name"
|
|
depends on CLOCK_CONTROL_QUARK_SE_SENSOR
|
|
default "clk_sensor"
|
|
|
|
endif # CLOCK_CONTROL_QUARK_SE
|