diff options
author | Miquel Raynal <miquel.raynal@bootlin.com> | 2019-10-25 19:39:29 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-12-04 17:10:51 -0500 |
commit | eb446ef625bcff969f3e1d3a6874ce9d56113e9b (patch) | |
tree | 007af705dcc556a8382b6bc2199320e6df566d7f /arch | |
parent | 587f44576e23174f1151f52b2c351777eb1b89ff (diff) | |
download | u-boot-eb446ef625bcff969f3e1d3a6874ce9d56113e9b.tar.gz u-boot-eb446ef625bcff969f3e1d3a6874ce9d56113e9b.tar.bz2 u-boot-eb446ef625bcff969f3e1d3a6874ce9d56113e9b.zip |
cmd: nand/sf: isolate legacy code
The 'sf' command is not supposed to rely on the MTD stack, but both
'sf' and 'nand' commands use helpers located in mtd_uboot.c. Despite
their location, these functions do not depend at all on the MTD
stack.
This file (drivers/mtd/mtd_uboot.c) is only compiled if CONFIG_MTD is
selected, which is inconsistent with the current situation. Solve this
by moving these three functions (which are only used by the above two
commands) out of mtd_uboot.c and put them in a C file only compiled
with cmd/sf.c and cmd/nand.c.
Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
[trini: Don't export get_part function now]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-imx/cmd_nandbcb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-imx/cmd_nandbcb.c b/arch/arm/mach-imx/cmd_nandbcb.c index 09c4356529..9d3ed1aac3 100644 --- a/arch/arm/mach-imx/cmd_nandbcb.c +++ b/arch/arm/mach-imx/cmd_nandbcb.c @@ -24,6 +24,8 @@ #include <linux/mtd/mtd.h> #include <nand.h> +#include "../../../cmd/legacy-mtd-utils.h" + #define BF_VAL(v, bf) (((v) & bf##_MASK) >> bf##_OFFSET) #define GETBIT(v, n) (((v) >> (n)) & 0x1) |