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 E4250261593; Tue, 2 Sep 2025 13:39:34 +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=1756820375; cv=none; b=ONBqaGsx/dVWnHMUV8hjNmKR+sNRjuOMV9Xynnmt37qApTUSd7xlSIpxbwBoPR7ABh33kSWLJh37V4luaUme2WcuMcNUII3kjvCAA/6wzBwUiW8SvdexYXVjzft7Qdw48NI9V7sJn38+/Z1prU+qZDtmzK5A+bhOJnqAVMj4kKA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756820375; c=relaxed/simple; bh=XygLJttyQ8qdThTVAQJM6x08TFh7rTuv0WTIeUzwUXA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=t0dB+tn/GAslB+IxXcASzdwAT/D131iEMKS+Cj+8X5mf4qhYtXwc++1VBx9NMUDHGBm2dELDP9+/aNW215JE3w8teGt3wM6VX0qKsKhZkzUrEFiYqrkOR5Fob6ZfnmrQooaekDrpMBG7D4fhtQxS7+3Rb/dQF6AZyTcOPWnSXB0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=LoZcpuGx; 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="LoZcpuGx" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5440AC4CEED; Tue, 2 Sep 2025 13:39:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1756820374; bh=XygLJttyQ8qdThTVAQJM6x08TFh7rTuv0WTIeUzwUXA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=LoZcpuGxwESWls0AJudKXm1a567hHQco2+JOzkoqQufDEjemudHzaLcNFToTJxDqR UmTrPQE/ew0eoU/bmiK0RfuxM8FEAeN2IBzcGkjoKn7LcceGRtG6yysBlXRBrd9fRa L/vjPlGJCTlgIVRgT/+rHpPR5z0qX2Ej57E/dIJQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Randy Dunlap , Linus Walleij , Sasha Levin Subject: [PATCH 6.1 01/50] pinctrl: STMFX: add missing HAS_IOMEM dependency Date: Tue, 2 Sep 2025 15:20:52 +0200 Message-ID: <20250902131930.570698731@linuxfoundation.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20250902131930.509077918@linuxfoundation.org> References: <20250902131930.509077918@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 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Randy Dunlap [ Upstream commit a12946bef0407cf2db0899c83d42c47c00af3fbc ] When building on ARCH=um (which does not set HAS_IOMEM), kconfig reports an unmet dependency caused by PINCTRL_STMFX. It selects MFD_STMFX, which depends on HAS_IOMEM. To stop this warning, PINCTRL_STMFX should also depend on HAS_IOMEM. kconfig warning: WARNING: unmet direct dependencies detected for MFD_STMFX Depends on [n]: HAS_IOMEM [=n] && I2C [=y] && OF [=y] Selected by [y]: - PINCTRL_STMFX [=y] && PINCTRL [=y] && I2C [=y] && OF_GPIO [=y] Fixes: 1490d9f841b1 ("pinctrl: Add STMFX GPIO expander Pinctrl/GPIO driver") Signed-off-by: Randy Dunlap Link: https://lore.kernel.org/20250815022721.1650885-1-rdunlap@infradead.org Signed-off-by: Linus Walleij Signed-off-by: Sasha Levin --- drivers/pinctrl/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index f71fefff400f5..6d61be061ff54 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -438,6 +438,7 @@ config PINCTRL_STMFX tristate "STMicroelectronics STMFX GPIO expander pinctrl driver" depends on I2C depends on OF_GPIO + depends on HAS_IOMEM select GENERIC_PINCONF select GPIOLIB_IRQCHIP select MFD_STMFX -- 2.50.1