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>
59 lines
1.1 KiB
Plaintext
59 lines
1.1 KiB
Plaintext
# Audio Codec configuration options
|
|
|
|
# Copyright (c) 2018 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig AUDIO
|
|
bool "Support for Audio"
|
|
help
|
|
Enable support for Audio
|
|
|
|
if AUDIO
|
|
#
|
|
# Audio Codec options
|
|
#
|
|
menuconfig AUDIO_CODEC
|
|
bool "Audio Codec Drivers"
|
|
help
|
|
Enable Audio Codec Driver Configuration
|
|
|
|
if AUDIO_CODEC
|
|
|
|
config AUDIO_CODEC_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 60
|
|
help
|
|
Audio codec device driver initialization priority.
|
|
|
|
module = AUDIO_CODEC
|
|
module-str = audio codec
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/audio/Kconfig.tlv320dac"
|
|
|
|
endif # AUDIO_CODEC
|
|
|
|
menuconfig AUDIO_DMIC
|
|
bool "Digital Microphone (Audio) Drivers"
|
|
help
|
|
Enable Digital Microphone Driver Configuration
|
|
|
|
if AUDIO_DMIC
|
|
|
|
config AUDIO_DMIC_INIT_PRIORITY
|
|
int "Init priority"
|
|
default 60
|
|
help
|
|
Audio Digital Microphone device driver initialization priority.
|
|
|
|
module = AUDIO_DMIC
|
|
module-str = audio_dmic
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
source "drivers/audio/Kconfig.intel_dmic"
|
|
source "drivers/audio/Kconfig.mpxxdtyy"
|
|
|
|
endif # AUDIO_DMIC
|
|
|
|
endif # AUDIO
|