From nobody Mon Apr 6 06:34:35 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id A27D8ECAAA1 for ; Fri, 9 Sep 2022 17:56:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232010AbiIIR4k (ORCPT ); Fri, 9 Sep 2022 13:56:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57858 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231557AbiIIRzh (ORCPT ); Fri, 9 Sep 2022 13:55:37 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3AB80F0AB0; Fri, 9 Sep 2022 10:55:35 -0700 (PDT) Received: from jupiter.universe (dyndsl-095-033-168-128.ewe-ip-backbone.de [95.33.168.128]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: sre) by madras.collabora.co.uk (Postfix) with ESMTPSA id 416B46601FE1; Fri, 9 Sep 2022 18:55:31 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1662746131; bh=zj4EycsA2up3moyNszlj5tFIZU3qPDoqX2acH/vKHBY=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MiWbmw6lJqq57f1P6ndUwH1TPNFKvN0WzRvkot+BkJnEe8hcoHlUVXnJHQRWu4UQp S6QPYe/lBObDkAoiyItJCQEHj/pFUxPLW6z7Ahxg4vyYmXwJW1FpV47vTbM10RZHG4 vTCrxlMMu1UDN1ChVYB6ulFAe1QB16kHtuQeCDpzB1R1cfZWirn+S2Hm03bznUVBET aGurrt57XENBDlmJ3+VHQbsn5WwQXucmVkl1cIVvUcNQN1g0JZupeV4gIPGY8GSvuy xEG1QhCmkeheKDW+OP4W3ps/91Yiq8QH8EijeViG8tNAuNtVYa0a8wGeRGWpC/xIkJ 5fdL7zOahgR8g== Received: by jupiter.universe (Postfix, from userid 1000) id 30D694805AA; Fri, 9 Sep 2022 19:55:27 +0200 (CEST) From: Sebastian Reichel To: Heiko Stuebner , Rob Herring , Krzysztof Kozlowski , Lee Jones Cc: Michael Turquette , Stephen Boyd , Linus Walleij , Mark Brown , Liam Girdwood , Alexandre Belloni , Alessandro Zummo , linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Sebastian Reichel , kernel@collabora.com Subject: [PATCHv3 14/14] ASoC: rk817: Remove 'select REGMAP_I2C' Date: Fri, 9 Sep 2022 19:55:22 +0200 Message-Id: <20220909175522.179175-15-sebastian.reichel@collabora.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220909175522.179175-1-sebastian.reichel@collabora.com> References: <20220909175522.179175-1-sebastian.reichel@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" With the changed rk808 driver (it now can be used with either SPI or I2C) a configuration without I2C is possible in theory. In that case selecting REGMAP_I2C is not ok. Since the audio codec driver does not really care about the regmap binding just drop the select. Signed-off-by: Sebastian Reichel --- sound/soc/codecs/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index d16b4efb88a7..646494973cfd 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -1192,7 +1192,6 @@ config SND_SOC_RK3328 config SND_SOC_RK817 tristate "Rockchip RK817 audio CODEC" depends on MFD_RK808 - select REGMAP_I2C =20 config SND_SOC_RL6231 tristate --=20 2.35.1