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 B0A10242D9A; Tue, 20 May 2025 14:04:39 +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=1747749879; cv=none; b=tJ3o5k9V2IwcCSnUUQP+HY3ZxjQduKdXH0bueWwJlc+QM2/eWl15B1DK2yPEqDgrGakI6hOHjwkTCG7kdwHSt91HARjjkL1xT5lZhT9uckXzoLnd21kb/E2O3LQRTSnQNbJRmi/H32dnFf21nbfD1t0K5HFyN2vjxhxlr0DzyH0= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747749879; c=relaxed/simple; bh=mXz4Fu/n/70eHt/MIRd1YOLU07Cr1T6HEKgcqkP4I5E=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=ZwZocUd7sU3GZXxdHiQ/toyeyXZUG0Eru9gsr8Pp+NmIuRatMivH4dZ79PFVLJow6gg44fFCtfxgnX1RH3PUorUCfy+a8OWqEmhdFRBgN+yfjMrZ96QamCJMNiFC1hm83lj+OuI+gyt8hGBU59YPiysuv24lxSH7wxHeE7t6sxA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=jraFe3dX; 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="jraFe3dX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 14BAFC4CEE9; Tue, 20 May 2025 14:04:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1747749879; bh=mXz4Fu/n/70eHt/MIRd1YOLU07Cr1T6HEKgcqkP4I5E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=jraFe3dXUPR5aanG1MOp0TRZZUjjlfFmsYyWsD4yE0i6Pc+2uZsKXmZslceiMMF11 DQsedy7hW9uKJSI6pwimIgE6zDQyEIqBgXLBgE5YIApS4y1mJF+wDiIsfNEmwOW1ns jIOdWFF8XXTHQxwZh8fG45glRn4XwVAnVPo7o/SM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, kernel test robot , Geert Uytterhoeven , Takashi Iwai , Sasha Levin Subject: [PATCH 6.6 048/117] ALSA: sh: SND_AICA should depend on SH_DMA_API Date: Tue, 20 May 2025 15:50:13 +0200 Message-ID: <20250520125805.898418970@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250520125803.981048184@linuxfoundation.org> References: <20250520125803.981048184@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.6-stable review patch. If anyone has any objections, please let me know. ------------------ From: Geert Uytterhoeven [ Upstream commit 66e48ef6ef506c89ec1b3851c6f9f5f80b5835ff ] If CONFIG_SH_DMA_API=n: WARNING: unmet direct dependencies detected for G2_DMA Depends on [n]: SH_DREAMCAST [=y] && SH_DMA_API [=n] Selected by [y]: - SND_AICA [=y] && SOUND [=y] && SND [=y] && SND_SUPERH [=y] && SH_DREAMCAST [=y] SND_AICA selects G2_DMA. As the latter depends on SH_DMA_API, the former should depend on SH_DMA_API, too. Fixes: f477a538c14d07f8 ("sh: dma: fix kconfig dependency for G2_DMA") Reported-by: kernel test robot Closes: https://lore.kernel.org/oe-kbuild-all/202505131320.PzgTtl9H-lkp@intel.com/ Signed-off-by: Geert Uytterhoeven Link: https://patch.msgid.link/b90625f8a9078d0d304bafe862cbe3a3fab40082.1747121335.git.geert+renesas@glider.be Signed-off-by: Takashi Iwai Signed-off-by: Sasha Levin --- sound/sh/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/sh/Kconfig b/sound/sh/Kconfig index b75fbb3236a7b..f5fa09d740b4c 100644 --- a/sound/sh/Kconfig +++ b/sound/sh/Kconfig @@ -14,7 +14,7 @@ if SND_SUPERH config SND_AICA tristate "Dreamcast Yamaha AICA sound" - depends on SH_DREAMCAST + depends on SH_DREAMCAST && SH_DMA_API select SND_PCM select G2_DMA help -- 2.39.5