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 BA3F650256; Tue, 23 Jan 2024 01:50:57 +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=1705974657; cv=none; b=L71tH3yUXNBRC/ZW98NNT7ZLZ5iYq46ZgTTnfJ14KD6RJ7HF0YYA6KP2IWXfcZI9SGWuo5z8Q48PKCV8HU4GspmTjGjQg0W+B+WpkD6NQjYaQ1A5sClyNhk9W7dx/hU61SxluiIPTS2AwH7zh70rGGuSeu+PlomFdfPLa2wJUGY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1705974657; c=relaxed/simple; bh=wGlfBQ8K9wyhnPFE2fEt1hPoSIwuOgZBd/mfedoqd9E=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Am/yitaDhOcomWi021vXguNpfiX4kH9CNrEv6hcteLzZeEQqIdQvjLQCeGa2exhVUKIEMe3b76HTFXmFSc+6FjcLZlgxmUQVLJqWx4TPvLxB4FmGPfTOLNj/ufwTiunTFplFbN6vVX9dHkJqwS79Z1FgukA+b+/4LrnouJlCqrY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=cJFCN18w; 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="cJFCN18w" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 803EEC433F1; Tue, 23 Jan 2024 01:50:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1705974657; bh=wGlfBQ8K9wyhnPFE2fEt1hPoSIwuOgZBd/mfedoqd9E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=cJFCN18wK6ZlOsii/S3KaD3VR8U3ZMuISwUB1jT/4Ed+TJMF21fryiNsGTpTOpaG5 d75Gppu7nCsp6fcDrTSMkU4i6elryubwcwqiJQZ/WD++yQqI14Y1PF104ZOYuaXY+N P2vWYJdpPKQc2SM3L3JzFcRwK5Y0rwaosecOXcFM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Peter Robinson , Ulf Hansson , Sasha Levin Subject: [PATCH 5.15 237/374] mmc: sdhci_omap: Fix TI SoC dependencies Date: Mon, 22 Jan 2024 15:58:13 -0800 Message-ID: <20240122235752.979327570@linuxfoundation.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20240122235744.598274724@linuxfoundation.org> References: <20240122235744.598274724@linuxfoundation.org> User-Agent: quilt/0.67 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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Peter Robinson [ Upstream commit 09f164d393a6671e5ff8342ba6b3cb7fe3f20208 ] The sdhci_omap is specific to older TI SoCs, update the dependencies for those SoCs and compile testing. While we're at it update the text to reflect the wider range of supported TI SoCS the driver now supports. Fixes: 7d326930d352 ("mmc: sdhci-omap: Add OMAP SDHCI driver") Signed-off-by: Peter Robinson Link: https://lore.kernel.org/r/20231220135950.433588-2-pbrobinson@gmail.com Signed-off-by: Ulf Hansson Signed-off-by: Sasha Levin --- drivers/mmc/host/Kconfig | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig index ef36a0095211..0061eeec220b 100644 --- a/drivers/mmc/host/Kconfig +++ b/drivers/mmc/host/Kconfig @@ -1055,14 +1055,15 @@ config MMC_SDHCI_XENON config MMC_SDHCI_OMAP tristate "TI SDHCI Controller Support" + depends on ARCH_OMAP2PLUS || ARCH_KEYSTONE || COMPILE_TEST depends on MMC_SDHCI_PLTFM && OF select THERMAL imply TI_SOC_THERMAL select MMC_SDHCI_EXTERNAL_DMA if DMA_ENGINE help This selects the Secure Digital Host Controller Interface (SDHCI) - support present in TI's DRA7 SOCs. The controller supports - SD/MMC/SDIO devices. + support present in TI's Keystone/OMAP2+/DRA7 SOCs. The controller + supports SD/MMC/SDIO devices. If you have a controller with this interface, say Y or M here. -- 2.43.0