summaryrefslogtreecommitdiff
path: root/drivers/memory/Makefile
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2024-10-29 18:45:51 -0600
committerTom Rini <[email protected]>2024-10-29 18:45:51 -0600
commit2d79d1004d8d2ec8522c520dc205c8f199fd035e (patch)
treeff16500f1889accb9b30a2eb446ec49b95fbb76e /drivers/memory/Makefile
parente28e70e392306626b750bedb4225bee24db40466 (diff)
parentea21cde01de8f6e3ffed75a995123183f411773e (diff)
Merge patch series "memory: ti-aemif: Add DM support"
Bastien Curutchet <[email protected]> says: Hi all, This patch series aims to add DM support for the AEMIF controller that can be found in the DaVinci SoCs. This controller has already a driver used by the Keystone SoCs so I add my work to it. As we can now easily import Linux device-trees, I try to stick the most I can to the Linux bindings of the AEMIF controller. To do so I add an 'intermediate' driver called 'ti-aemif-cs'. It's in charge of configuring timings for a given chip select of the AEMIF controller. Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'drivers/memory/Makefile')
-rw-r--r--drivers/memory/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/memory/Makefile b/drivers/memory/Makefile
index 1cabf8ac9cd..fdc83e4e1c8 100644
--- a/drivers/memory/Makefile
+++ b/drivers/memory/Makefile
@@ -3,5 +3,5 @@ obj-$(CONFIG_MEMORY) += memory-uclass.o
obj-$(CONFIG_SANDBOX_MEMORY) += memory-sandbox.o
obj-$(CONFIG_STM32_FMC2_EBI) += stm32-fmc2-ebi.o
obj-$(CONFIG_ATMEL_EBI) += atmel_ebi.o
-obj-$(CONFIG_TI_AEMIF) += ti-aemif.o
+obj-$(CONFIG_TI_AEMIF) += ti-aemif.o ti-aemif-cs.o
obj-$(CONFIG_TI_GPMC) += ti-gpmc.o