mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-08 16:26:58 +02:00
Kconfig: Drop CONFIG_CMD_FDT_MAX_DUMP
This option is not used by any board. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b0e7a70a05
commit
5d927b4286
@ -20,9 +20,7 @@
|
|||||||
|
|
||||||
#define MAX_LEVEL 32 /* how deeply nested we will go */
|
#define MAX_LEVEL 32 /* how deeply nested we will go */
|
||||||
#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
|
#define SCRATCHPAD 1024 /* bytes of scratchpad memory */
|
||||||
#ifndef CONFIG_CMD_FDT_MAX_DUMP
|
#define CMD_FDT_MAX_DUMP 64
|
||||||
#define CONFIG_CMD_FDT_MAX_DUMP 64
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Global data (for the gd->bd)
|
* Global data (for the gd->bd)
|
||||||
@ -901,7 +899,7 @@ static void print_data(const void *data, int len)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ((len %4) == 0) {
|
if ((len %4) == 0) {
|
||||||
if (len > CONFIG_CMD_FDT_MAX_DUMP)
|
if (len > CMD_FDT_MAX_DUMP)
|
||||||
printf("* 0x%p [0x%08x]", data, len);
|
printf("* 0x%p [0x%08x]", data, len);
|
||||||
else {
|
else {
|
||||||
const __be32 *p;
|
const __be32 *p;
|
||||||
@ -913,7 +911,7 @@ static void print_data(const void *data, int len)
|
|||||||
printf(">");
|
printf(">");
|
||||||
}
|
}
|
||||||
} else { /* anything else... hexdump */
|
} else { /* anything else... hexdump */
|
||||||
if (len > CONFIG_CMD_FDT_MAX_DUMP)
|
if (len > CMD_FDT_MAX_DUMP)
|
||||||
printf("* 0x%p [0x%08x]", data, len);
|
printf("* 0x%p [0x%08x]", data, len);
|
||||||
else {
|
else {
|
||||||
const u8 *s;
|
const u8 *s;
|
||||||
|
@ -383,7 +383,6 @@ CONFIG_CM922T_XA10
|
|||||||
CONFIG_CMDLINE_EDITING
|
CONFIG_CMDLINE_EDITING
|
||||||
CONFIG_CMDLINE_PS_SUPPORT
|
CONFIG_CMDLINE_PS_SUPPORT
|
||||||
CONFIG_CMDLINE_TAG
|
CONFIG_CMDLINE_TAG
|
||||||
CONFIG_CMD_FDT_MAX_DUMP
|
|
||||||
CONFIG_CMD_FPGAD
|
CONFIG_CMD_FPGAD
|
||||||
CONFIG_CMD_FPGA_LOADBP
|
CONFIG_CMD_FPGA_LOADBP
|
||||||
CONFIG_CMD_FPGA_LOADFS
|
CONFIG_CMD_FPGA_LOADFS
|
||||||
|
Loading…
Reference in New Issue
Block a user