mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
b7e0d73bad
Some functions deal with structured data rather than simple data types. It makes sense to have these in their own file. For now this just has a function to read a flashmap entry. Move the data types also. Signed-off-by: Simon Glass <sjg@chromium.org>
15 lines
482 B
Makefile
15 lines
482 B
Makefile
#
|
|
# Copyright (c) 2013 Google, Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += device.o fdtaddr.o lists.o root.o uclass.o util.o
|
|
obj-$(CONFIG_DEVRES) += devres.o
|
|
obj-$(CONFIG_$(SPL_)DM_DEVICE_REMOVE) += device-remove.o
|
|
obj-$(CONFIG_$(SPL_)SIMPLE_BUS) += simple-bus.o
|
|
obj-$(CONFIG_DM) += dump.o
|
|
obj-$(CONFIG_$(SPL_)REGMAP) += regmap.o
|
|
obj-$(CONFIG_$(SPL_)SYSCON) += syscon-uclass.o
|
|
obj-$(CONFIG_OF_LIVE) += of_access.o of_addr.o
|
|
obj-$(CONFIG_OF_CONTROL) += of_extra.o ofnode.o
|