diff options
author | Simon Glass | 2023-02-01 13:19:46 -0700 |
---|---|---|
committer | Tom Rini | 2023-02-07 14:33:48 -0500 |
commit | efabbe60d2391773eefd6ff900fc840e30339960 (patch) | |
tree | 62dd8736ed2fd653d40e66a031b0cda014ed112b /tools/mxsimage.c | |
parent | cdcc9bc1874231c446234f11038fda4ef7dfc63d (diff) |
imx: Rename CONFIG_MXS to CFG_MXS
This is not a Kconfig option so we should not be setting it in the
Makefile. Rename it to use a CFS_ prefix, since this is still used in
mxsimage.c
In general tools should support all the features without reference to
CONFIG options, but this is left to the maintainer to look at.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/mxsimage.c')
-rw-r--r-- | tools/mxsimage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mxsimage.c b/tools/mxsimage.c index fee022aab46..fbe46c47fae 100644 --- a/tools/mxsimage.c +++ b/tools/mxsimage.c @@ -5,7 +5,7 @@ * Copyright (C) 2012-2013 Marek Vasut <marex@denx.de> */ -#ifdef CONFIG_MXS +#ifdef CFG_MXS #include <errno.h> #include <fcntl.h> |