diff options
| author | Tom Rini <[email protected]> | 2025-10-01 14:30:50 -0600 |
|---|---|---|
| committer | Jerome Forissier <[email protected]> | 2025-10-22 11:09:24 +0200 |
| commit | efe1d6303f243cf3588dd1974fbfdef0d7a02c42 (patch) | |
| tree | 794631609a2e9497166f9561e842fdfcde765997 /lib | |
| parent | caa2ad6f8c8cc4c295c77aaff464c580d52c3ba6 (diff) | |
uthreads: Make use of CONFIG_IS_ENABLED consistently
We do not yet support UTHREADS in xPL phases. However, we have the need
to dummy out certain functions so that xPL can build when full U-Boot
has UTHREADS enabled. Update the few places that need to use
CONFIG_IS_ENABLED so that we have the correct dummy in xPL.
Signed-off-by: Tom Rini <[email protected]>
Acked-by: Jerome Forissier <[email protected]>
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index a2e60668864..07702cef7e7 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -161,7 +161,7 @@ obj-$(CONFIG_LIB_ELF) += elf.o obj-$(CONFIG_$(PHASE_)SEMIHOSTING) += semihosting.o -obj-$(CONFIG_UTHREAD) += uthread.o +obj-$(CONFIG_$(PHASE_)UTHREAD) += uthread.o # # Build a fast OID lookup registry from include/linux/oid_registry.h |
