diff options
Diffstat (limited to 'common/iomux.c')
-rw-r--r-- | common/iomux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/iomux.c b/common/iomux.c index 3d8d00b..0e4e680 100644 --- a/common/iomux.c +++ b/common/iomux.c @@ -10,7 +10,7 @@ #include <serial.h> #include <malloc.h> -#ifdef CONFIG_CONSOLE_MUX +#if CONFIG_IS_ENABLED(CONSOLE_MUX) void iomux_printdevs(const int console) { int i; @@ -145,4 +145,4 @@ int iomux_doenv(const int console, const char *arg) free(cons_set); return 0; } -#endif /* CONFIG_CONSOLE_MUX */ +#endif /* CONSOLE_MUX */ |