From 1870ecc206ba319f67f0b7384741502bd1070207 Mon Sep 17 00:00:00 2001 From: Armando Visconti Date: Tue, 27 Apr 2021 16:26:07 +0200 Subject: [PATCH] drivers/audio: Kconfig: Fix dmic INIT_PRIORITY default value The AUDIO_DMIC INIT_PRIORITY definition is set to 60 by default, but this value is causing dmic drivers to be initialized prior to i2s, to which they are dependent from. Signed-off-by: Armando Visconti --- drivers/audio/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/audio/Kconfig b/drivers/audio/Kconfig index 4f742599bf4..ea749a58e47 100644 --- a/drivers/audio/Kconfig +++ b/drivers/audio/Kconfig @@ -42,7 +42,7 @@ if AUDIO_DMIC config AUDIO_DMIC_INIT_PRIORITY int "Init priority" - default 60 + default 80 help Audio Digital Microphone device driver initialization priority.