diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-22 09:33:49 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-02 17:45:58 -0500 |
commit | b07be4a8a2518164593f67ac95fbd20c44d6a1c5 (patch) | |
tree | 379428c34a5a0e94e6dc31f8573943e56e934736 /drivers/mux | |
parent | 1be3077e714bfdb8fb7a6cfb78fec1e71111d57c (diff) | |
download | u-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.tar.gz u-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.tar.bz2 u-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.zip |
Correct SPL uses of MULTIPLEXER
This converts 3 usages of this option to the non-SPL form, since there is
no SPL_MULTIPLEXER defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'drivers/mux')
-rw-r--r-- | drivers/mux/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mux/Makefile b/drivers/mux/Makefile index 78ebf04c7a..d4e24789d3 100644 --- a/drivers/mux/Makefile +++ b/drivers/mux/Makefile @@ -3,5 +3,5 @@ # (C) Copyright 2019 # Jean-Jacques Hiblot <jjhiblot@ti.com> -obj-$(CONFIG_$(SPL_)MULTIPLEXER) += mux-uclass.o +obj-$(CONFIG_MULTIPLEXER) += mux-uclass.o obj-$(CONFIG_$(SPL_)MUX_MMIO) += mmio.o |