mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 20:51:39 +00:00
ram: move aspeed ram driver into drivers/ directory
to improve the maintainability. It is more easier to modify and add configurations of the driver in the centralized ram driver directory. Signed-off-by: Dylan Hung <dylan_hung@aspeedtech.com> Reviewed-by: Ryan Chen <ryan_chen@aspeedtech.com>
This commit is contained in:
parent
a58d86db46
commit
5d457f8057
4 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
obj-y += lowlevel_init.o
|
obj-y += lowlevel_init.o
|
||||||
obj-y += board_common.o
|
obj-y += board_common.o
|
||||||
obj-y += clk_ast2500.o sdram_ast2500.o
|
obj-y += clk_ast2500.o
|
||||||
|
|
|
@ -14,6 +14,7 @@ obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
||||||
|
|
||||||
obj-$(CONFIG_K3_AM654_DDRSS) += k3-am654-ddrss.o
|
obj-$(CONFIG_K3_AM654_DDRSS) += k3-am654-ddrss.o
|
||||||
obj-$(CONFIG_ARCH_MEDIATEK) += mediatek/
|
obj-$(CONFIG_ARCH_MEDIATEK) += mediatek/
|
||||||
|
obj-$(CONFIG_ARCH_ASPEED) += aspeed/
|
||||||
obj-$(CONFIG_K3_J721E_DDRSS) += k3-j721e/
|
obj-$(CONFIG_K3_J721E_DDRSS) += k3-j721e/
|
||||||
|
|
||||||
obj-$(CONFIG_IMXRT_SDRAM) += imxrt_sdram.o
|
obj-$(CONFIG_IMXRT_SDRAM) += imxrt_sdram.o
|
||||||
|
|
3
drivers/ram/aspeed/Makefile
Normal file
3
drivers/ram/aspeed/Makefile
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# SPDX-License-Identifier: GPL-2.0+
|
||||||
|
#
|
||||||
|
obj-$(CONFIG_ASPEED_AST2500) += sdram_ast2500.o
|
Loading…
Add table
Reference in a new issue