From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 4F4621E6DCF; Thu, 30 Jan 2025 14:26:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738247201; cv=none; b=idUdRlaLvwB/iCJsy0feXWW6nzp5xPrBmIqifBSDst6xtBnye7jFE2/ymUIpifvZDRsGiQD8QLtuZ1Db/2Ei830JeRLb3oVJ1t09IFlHhGd8j3l/QGRAcWe2vorMHS35QVW46AVZiTX4yYosALqk4yIrGJN3+o7iOMofiS22BM0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738247201; c=relaxed/simple; bh=caoOFKV8ofKAF6KY6MlwmWkk/u/OIsxMsxciEqPueNg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uQ+O1jqCtMwMECMJiaCqWRW0Ynjmcrsa46r6nvxs3EUn7mT5LHKDP4KtPKEZ0Na112ffRfS7mismiaVsX1WL6M8L05vZjVVCt5DnchzjpCa8DdIg0K8qphQgTbr/OkvyNNcrUJQFG7A4eoe80o+3+hdx4aQYenxvtvBpuwUue/4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=n+lzwIIj; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="n+lzwIIj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6AA58C4CED2; Thu, 30 Jan 2025 14:26:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1738247200; bh=caoOFKV8ofKAF6KY6MlwmWkk/u/OIsxMsxciEqPueNg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=n+lzwIIjIk3seO9KjAi88kL1sj35B8nt2g02++GQasISpFc1ngJE41+G445Rq851h PNRhrI+Q2X/d04xJ7Mpc9k5PpCf+nB65NTvqrAhtM00lhwhhibSjY9E2mOHDhIwAxE gKGgoNc0UkNgf5qvDYrC7Y0JfvU3O01T1+A40vRM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Charles Keepax , Mark Brown , Sasha Levin Subject: [PATCH 5.10 116/133] ASoC: samsung: Add missing selects for MFD_WM8994 Date: Thu, 30 Jan 2025 15:01:45 +0100 Message-ID: <20250130140147.203530904@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250130140142.491490528@linuxfoundation.org> References: <20250130140142.491490528@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Charles Keepax [ Upstream commit fd55c6065bec5268740e944a1800e6fad00974d9 ] Anything selecting SND_SOC_WM8994 should also select MFD_WM8994, as SND_SOC_WM8994 does not automatically do so. Add the missing selects. Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202501071530.UwIXs7OL-lkp@intel.com/ Signed-off-by: Charles Keepax Link: https://patch.msgid.link/20250107104134.12147-1-ckeepax@opensource.cirrus.com Signed-off-by: Mark Brown Signed-off-by: Sasha Levin --- sound/soc/samsung/Kconfig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sound/soc/samsung/Kconfig b/sound/soc/samsung/Kconfig index a2221ebb1b6ab..159bc501186f9 100644 --- a/sound/soc/samsung/Kconfig +++ b/sound/soc/samsung/Kconfig @@ -214,8 +214,9 @@ config SND_SOC_SAMSUNG_TM2_WM5110 config SND_SOC_SAMSUNG_ARIES_WM8994 tristate "SoC I2S Audio support for WM8994 on Aries" - depends on SND_SOC_SAMSUNG && MFD_WM8994 && IIO && EXTCON + depends on SND_SOC_SAMSUNG && IIO && EXTCON select SND_SOC_BT_SCO + select MFD_WM8994 select SND_SOC_WM8994 select SND_SAMSUNG_I2S help @@ -229,6 +230,7 @@ config SND_SOC_SAMSUNG_MIDAS_WM1811 tristate "SoC I2S Audio support for Midas boards" depends on SND_SOC_SAMSUNG select SND_SAMSUNG_I2S + select MFD_WM8994 select SND_SOC_WM8994 help Say Y if you want to add support for SoC audio on the Midas boards. -- 2.39.5