From e341c74f066346687ea1a184d6c83294d2833160 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 24 Aug 2017 11:12:10 -0600 Subject: [PATCH] drivers/audio: Fix naming of configurations to be compliant for vs1053 audio driver. One file was not saved before last commit. --- drivers/audio/Kconfig | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/drivers/audio/Kconfig b/drivers/audio/Kconfig index 3de9d1f60a..804d48a211 100644 --- a/drivers/audio/Kconfig +++ b/drivers/audio/Kconfig @@ -46,7 +46,7 @@ if AUDIO_TONE endif # AUDIO_TONE -config VS1053 +config AUDIO_VS1053 bool "VS1053 codec chip" default n depends on AUDIO @@ -56,7 +56,7 @@ config VS1053 Vorbis format audio. It also has a general DSP which is user programmable to perform special audio (or any DSP) functions. -if VS1053 +if AUDIO_VS1053 config VS1053_DEVICE_COUNT int "Number of VS1053 devices attached" @@ -92,8 +92,7 @@ config VS1053_BUFFER_SIZE 2048 bytes. The larger the buffer, the better CPU performance. endif # AUDIO_DRIVER_SPECIFIC_BUFFERS - -endif # VS1053 +endif # AUDIO_VS1053 config AUDIO_CS43L22 bool "CS43L22 audio chip"