From nobody Tue Apr 7 17:15:29 2026 Received: from smtpout-02.galae.net (smtpout-02.galae.net [185.246.84.56]) (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 833F33A0EB3 for ; Thu, 26 Feb 2026 13:52:05 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.246.84.56 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772113927; cv=none; b=f6ZwYz5FIs0u/xvi22tLQvk1UMXjR9vB4ZEjYsVU8H4IGGuH7JQgxeNhrKXFe354s8eQPtctXDPHpifayut7/Kncy3nilWjNeyaoPQEwG4FOw9JTvV2up/R6dozi3jedVsbu1s0BbPkB1I/FfSsVoQFfrI+9TQXDNUn4dcthh2w= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1772113927; c=relaxed/simple; bh=aAvohoqVL4/4oU3xOUZc1aVOFyxME7kUfR9rAmlxwxc=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=NsSFgZ7o00WQ2c3G4fA8SjAS8AA52cZnlgPpiTK3Z+Eal6oaiRCK9SOyyeg5VscxUWIrblwd/JdoP3OD/lVye+iy+MlP1xAS2Mk0tyzpTZv3cJZH1vzCO6XCH7nPrgRIhY0TJNzREh8DzD2UMgdR6ZAG+EZeMOozvM9Xj2Mai0c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com; spf=pass smtp.mailfrom=bootlin.com; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b=zIH1jad7; arc=none smtp.client-ip=185.246.84.56 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=reject dis=none) header.from=bootlin.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=bootlin.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=bootlin.com header.i=@bootlin.com header.b="zIH1jad7" Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-02.galae.net (Postfix) with ESMTPS id 2E2601A13C4; Thu, 26 Feb 2026 13:51:59 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 012CA5FDEB; Thu, 26 Feb 2026 13:51:59 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id A683710369399; Thu, 26 Feb 2026 14:51:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1772113918; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=Z0fbtjwj8Vohgi2j3qVMkNCuQXm65PUxqfD/uoYWs5s=; b=zIH1jad7ZCXWDCTXpuwSzPxaZtr7bNVJ/wqcZ8MIlSk6O5/NgCecZnojqTeA33rY3iuD1b Sz6a9pajc72iNkPf1D+0/z8PLij7cznninOjGBl2DsS40G4mAm0pzRT391MZGox3rSxZ9Z BsAE3XOLC05cHaV3yADMui9c5Z9a8rTmbvEXcO6J6Uz1/LZhfh9qklG2CZDC4EqWXbmowr kptW5AUEPI/o0le0HLsBYu8gI9HHLtSUzCi9mhhkEg4XMRM4R54lbCZLLTLVGLlF5YAYEN uFg6VYIy/WMt+sKG9WzhJZdnAtUbb2sZ9Fhie0mGjTF/B/fI6/XrkNjGQXGA0g== From: Romain Gantois Date: Thu, 26 Feb 2026 14:51:51 +0100 Subject: [PATCH v2 1/3] misc: ti_fpc202: Depend on GPIOLIB instead of selecting it Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Message-Id: <20260226-fpc202-leds-v2-1-bc74857869e0@bootlin.com> References: <20260226-fpc202-leds-v2-0-bc74857869e0@bootlin.com> In-Reply-To: <20260226-fpc202-leds-v2-0-bc74857869e0@bootlin.com> To: Rob Herring , Krzysztof Kozlowski , Conor Dooley , Arnd Bergmann , Greg Kroah-Hartman Cc: Felix Gu , Thomas Petazzoni , linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, Romain Gantois X-Mailer: b4 0.14.3 X-Last-TLS-Session-Version: TLSv1.3 Selecting a foreign subsystem such as GPIOLIB may lead to dependency loops. Use a "depends on" instead. Signed-off-by: Romain Gantois --- drivers/misc/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index 5cc79d1517af5..dcb36e39d7079 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -116,7 +116,7 @@ config RPMB config TI_FPC202 tristate "TI FPC202 Dual Port Controller" depends on I2C - select GPIOLIB + depends on GPIOLIB select I2C_ATR help If you say yes here you get support for the Texas Instruments FPC202 --=20 2.52.0