From nobody Sat Oct 4 00:32:13 2025 Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B80A41E8320 for ; Thu, 21 Aug 2025 14:17:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=140.211.166.183 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755785836; cv=none; b=Y4Tt5L6M+2EDwIhEQyAyK8rYUjSH9lNaCyQo9Gp88cbe6uQOmc44GkeD01P9u1mbtdpZjId1jNWH1Z298zykP+12xio4/tlpC7hNytCEJ9WNXiAb27OfJ12Ufa46HwKlHKxix2jG8eXYo0Trhq22O/K56OtMjvKrF9lUDZobYTQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755785836; c=relaxed/simple; bh=ipCRsd1VfHlrlpxgjqdTRnACWEk7iAdMxYp3yq+pTvI=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=YMn68tuyt7TAB7g/ZqlJZkAB+zL4z3hda0ysg5toH7aDIwpGnIPhmdsHJAgiaPeLcDr4iHphtnrChYqhDsYS4Dpuu8e3dNMzlFixu+3vwm43ejyzJIYSeWBd1VydPKlKs1ZixEWE5s0gL6uuUhO4cb+B+C0sB1/SbDNFSNkEl28= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=gentoo.org; spf=pass smtp.mailfrom=gentoo.org; arc=none smtp.client-ip=140.211.166.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gentoo.org Received: from bozeman.fios-router.home (pool-96-240-17-61.nwrknj.fios.verizon.net [96.240.17.61]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: mpagano) by smtp.gentoo.org (Postfix) with ESMTPSA id D2CF6340A98; Thu, 21 Aug 2025 14:17:13 +0000 (UTC) From: Mike Pagano To: linux-kernel@vger.kernel.org Cc: akshay.gupta@amd.com, mpagano@gentoo.org Subject: [PATCH] misc: amd-sbi: Add missing dependency on REGMAP_I2C Date: Thu, 21 Aug 2025 10:16:52 -0400 Message-ID: <20250821141711.177014-1-mpagano@gentoo.org> X-Mailer: git-send-email 2.49.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" This driver requires REGMAP_I2C to be selected in order to get access to devm_regmap_init_i2c. Add the missing dependency. Signed-off-by: Mike Pagano --- drivers/misc/amd-sbi/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/misc/amd-sbi/Kconfig b/drivers/misc/amd-sbi/Kconfig index 4840831c84..4aae0733d0 100644 --- a/drivers/misc/amd-sbi/Kconfig +++ b/drivers/misc/amd-sbi/Kconfig @@ -2,6 +2,7 @@ config AMD_SBRMI_I2C tristate "AMD side band RMI support" depends on I2C + select REGMAP_I2C help Side band RMI over I2C support for AMD out of band management. =20 --=20 2.49.1