aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-22 09:33:49 -0700
committerTom Rini <trini@konsulko.com>2023-03-02 17:45:58 -0500
commitb07be4a8a2518164593f67ac95fbd20c44d6a1c5 (patch)
tree379428c34a5a0e94e6dc31f8573943e56e934736 /include
parent1be3077e714bfdb8fb7a6cfb78fec1e71111d57c (diff)
downloadu-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.zip
u-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.tar.gz
u-boot-b07be4a8a2518164593f67ac95fbd20c44d6a1c5.tar.bz2
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 'include')
-rw-r--r--include/mux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mux.h b/include/mux.h
index 9f80991..c92d887 100644
--- a/include/mux.h
+++ b/include/mux.h
@@ -23,7 +23,7 @@
struct udevice;
struct mux_control;
-#if CONFIG_IS_ENABLED(MULTIPLEXER)
+#if IS_ENABLED(CONFIG_MULTIPLEXER)
/**
* mux_control_states() - Query the number of multiplexer states.
* @mux: The mux-control to query.