diff options
| author | AKASHI Takahiro <[email protected]> | 2022-03-08 20:36:46 +0900 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2022-04-09 21:06:31 +0200 |
| commit | 6b7a6210fde96bb95c8168af4ebf4eb83401df9e (patch) | |
| tree | d220c45e31a3a4ea5ffa49e287d4574192310670 /drivers/core/Makefile | |
| parent | 75a9d7504180f01abb3f63ee894476f457c6dbb5 (diff) | |
dm: add tag support
With dm-tag feature, any U-Boot subsystem is allowed to associate
arbitrary number of data with a particular udevice. This can been
see as expanding "struct udevice" without modifying the definition.
As a first user, UEFI subsystem makes use of tags to associate
an efi_disk object with a block device.
Signed-off-by: AKASHI Takahiro <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/core/Makefile')
| -rw-r--r-- | drivers/core/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/core/Makefile b/drivers/core/Makefile index 5edd4e41357..3742e757452 100644 --- a/drivers/core/Makefile +++ b/drivers/core/Makefile @@ -2,7 +2,7 @@ # # Copyright (c) 2013 Google, Inc -obj-y += device.o fdtaddr.o lists.o root.o uclass.o util.o +obj-y += device.o fdtaddr.o lists.o root.o uclass.o util.o tag.o obj-$(CONFIG_$(SPL_TPL_)ACPIGEN) += acpi.o obj-$(CONFIG_DEVRES) += devres.o obj-$(CONFIG_$(SPL_)DM_DEVICE_REMOVE) += device-remove.o |
