The obj- list is sorted by config symbol except for ATMEL_EBI, which sits between STM32_OMM and TI_AEMIF. Move it to its place so that new entries have an unambiguous spot to go to.
No functional change. Signed-off-by: Julien Stephan <[email protected]> --- drivers/memory/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/memory/Makefile b/drivers/memory/Makefile index 77294fac69d..d5f5b073672 100644 --- a/drivers/memory/Makefile +++ b/drivers/memory/Makefile @@ -1,8 +1,8 @@ +obj-$(CONFIG_ATMEL_EBI) += atmel_ebi.o obj-$(CONFIG_MEMORY) += memory-uclass.o obj-$(CONFIG_SANDBOX_MEMORY) += memory-sandbox.o obj-$(CONFIG_STM32_FMC2_EBI) += stm32-fmc2-ebi.o obj-$(CONFIG_STM32_OMM) += stm32_omm.o -obj-$(CONFIG_ATMEL_EBI) += atmel_ebi.o obj-$(CONFIG_TI_AEMIF) += ti-aemif.o ti-aemif-cs.o obj-$(CONFIG_TI_GPMC) += ti-gpmc.o -- 2.55.0
