mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
5e19f4aa13
Add a bus driver for this and use it to configure the bus parameters for the Ethernet interface. Drop the old pre-driver-model code. Switch over to use driver model for Ethernet. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
15 lines
382 B
Makefile
15 lines
382 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (C) 2012 Samsung Electronics
|
|
# Lukasz Majewski <l.majewski@samsung.com>
|
|
|
|
obj-$(CONFIG_USB_GADGET_DOWNLOAD) += gadget.o
|
|
obj-$(CONFIG_MISC_COMMON) += misc.o
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-$(CONFIG_BOARD_COMMON) += board.o sromc.o
|
|
ifdef CONFIG_EXYNOS5_DT
|
|
obj-y += exynos5-dt.o
|
|
obj-$(CONFIG_BOARD_TYPES) += exynos5-dt-types.o
|
|
endif
|
|
endif
|