2018-07-27 00:22:10 +08:00
|
|
|
# Kconfig - 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.
|
|
|
|
|
2018-09-18 01:06:26 +08:00
|
|
|
module = AUDIO_CODEC
|
|
|
|
module-str = audio codec
|
|
|
|
source "subsys/logging/Kconfig.template.log_config"
|
2018-07-27 00:22:10 +08:00
|
|
|
|
|
|
|
source "drivers/audio/Kconfig.tlv320dac"
|
|
|
|
|
|
|
|
endif # AUDIO_CODEC
|
|
|
|
endif # AUDIO
|