public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: remove SPEAR entry in makefile
@ 2023-02-22 19:19 Patrick Delaunay
  2023-02-22 19:19 ` [PATCH 2/2] mmc: remove SDHCI SPEAR Patrick Delaunay
  2023-03-07 17:52 ` [PATCH 1/2] ARM: remove SPEAR entry in makefile Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Patrick Delaunay @ 2023-02-22 19:19 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick Delaunay, Tom Rini, U-Boot STM32

As the lastest spear directories are removed, delete the associated entry
in Makefile.

Fixes: 570c3dcfc153 ("arm: Remove spear600 boards and the rest of SPEAr support")
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
---

 arch/arm/cpu/arm926ejs/Makefile | 1 -
 1 file changed, 1 deletion(-)

diff --git a/arch/arm/cpu/arm926ejs/Makefile b/arch/arm/cpu/arm926ejs/Makefile
index 7e7ad4f35d7e..8cfe3f0fbbc2 100644
--- a/arch/arm/cpu/arm926ejs/Makefile
+++ b/arch/arm/cpu/arm926ejs/Makefile
@@ -13,7 +13,6 @@ endif
 endif
 
 obj-$(if $(filter mxs,$(SOC)),y) += mxs/
-obj-$(if $(filter spear,$(SOC)),y) += spear/
 obj-$(CONFIG_ARCH_SUNXI) += sunxi/
 
 # some files can only build in ARM or THUMB2, not THUMB1
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] mmc: remove SDHCI SPEAR
  2023-02-22 19:19 [PATCH 1/2] ARM: remove SPEAR entry in makefile Patrick Delaunay
@ 2023-02-22 19:19 ` Patrick Delaunay
  2023-03-07 17:52   ` Tom Rini
  2023-03-07 17:52 ` [PATCH 1/2] ARM: remove SPEAR entry in makefile Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Patrick Delaunay @ 2023-02-22 19:19 UTC (permalink / raw)
  To: u-boot; +Cc: Patrick Delaunay, Jaehoon Chung, Peng Fan, U-Boot STM32

As the file spear_sdhci.c file is already removed, delete the associated
configuration CONFIG_MMC_SDHCI_SPEAR.

Fixes: c942fc925e7dab ("mmc: spear: remove the entire spear_sdhci.c file")
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
---

 drivers/mmc/Kconfig  | 12 ------------
 drivers/mmc/Makefile |  1 -
 2 files changed, 13 deletions(-)

diff --git a/drivers/mmc/Kconfig b/drivers/mmc/Kconfig
index 878f867c627b..80641e139305 100644
--- a/drivers/mmc/Kconfig
+++ b/drivers/mmc/Kconfig
@@ -667,18 +667,6 @@ config MMC_SDHCI_S5P
 
 	  If unsure, say N.
 
-config MMC_SDHCI_SPEAR
-	bool "SDHCI support on ST SPEAr platform"
-	depends on MMC_SDHCI
-	help
-	  This selects the Secure Digital Host Controller Interface (SDHCI)
-	  often referrered to as the HSMMC block in some of the ST SPEAR range
-	  of SoC
-
-	  If you have a controller with this interface, say Y here.
-
-	  If unsure, say N.
-
 config MMC_SDHCI_STI
 	bool "SDHCI support for STMicroelectronics SoC"
 	depends on MMC_SDHCI && OF_CONTROL
diff --git a/drivers/mmc/Makefile b/drivers/mmc/Makefile
index 3dc757108d5a..2c65c4765ab2 100644
--- a/drivers/mmc/Makefile
+++ b/drivers/mmc/Makefile
@@ -70,7 +70,6 @@ obj-$(CONFIG_MMC_SDHCI_NPCM)            += npcm_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_PIC32)		+= pic32_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_ROCKCHIP)	+= rockchip_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_S5P)		+= s5p_sdhci.o
-obj-$(CONFIG_MMC_SDHCI_SPEAR)		+= spear_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_STI)		+= sti_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_TANGIER)		+= tangier_sdhci.o
 obj-$(CONFIG_MMC_SDHCI_TEGRA)		+= tegra_mmc.o
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] ARM: remove SPEAR entry in makefile
  2023-02-22 19:19 [PATCH 1/2] ARM: remove SPEAR entry in makefile Patrick Delaunay
  2023-02-22 19:19 ` [PATCH 2/2] mmc: remove SDHCI SPEAR Patrick Delaunay
@ 2023-03-07 17:52 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-03-07 17:52 UTC (permalink / raw)
  To: Patrick Delaunay; +Cc: u-boot, U-Boot STM32

[-- Attachment #1: Type: text/plain, Size: 364 bytes --]

On Wed, Feb 22, 2023 at 08:19:58PM +0100, Patrick Delaunay wrote:

> As the lastest spear directories are removed, delete the associated entry
> in Makefile.
> 
> Fixes: 570c3dcfc153 ("arm: Remove spear600 boards and the rest of SPEAr support")
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] mmc: remove SDHCI SPEAR
  2023-02-22 19:19 ` [PATCH 2/2] mmc: remove SDHCI SPEAR Patrick Delaunay
@ 2023-03-07 17:52   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2023-03-07 17:52 UTC (permalink / raw)
  To: Patrick Delaunay; +Cc: u-boot, Jaehoon Chung, Peng Fan, U-Boot STM32

[-- Attachment #1: Type: text/plain, Size: 381 bytes --]

On Wed, Feb 22, 2023 at 08:19:59PM +0100, Patrick Delaunay wrote:

> As the file spear_sdhci.c file is already removed, delete the associated
> configuration CONFIG_MMC_SDHCI_SPEAR.
> 
> Fixes: c942fc925e7dab ("mmc: spear: remove the entire spear_sdhci.c file")
> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>

Applied to u-boot/next, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-07 17:54 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-22 19:19 [PATCH 1/2] ARM: remove SPEAR entry in makefile Patrick Delaunay
2023-02-22 19:19 ` [PATCH 2/2] mmc: remove SDHCI SPEAR Patrick Delaunay
2023-03-07 17:52   ` Tom Rini
2023-03-07 17:52 ` [PATCH 1/2] ARM: remove SPEAR entry in makefile Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox