summaryrefslogtreecommitdiff
path: root/configs/a3y17lte_defconfig
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-01-25 18:08:23 -0500
committerTom Rini <trini@konsulko.com>2023-02-06 12:07:18 -0500
commit007ae5d108a37564905ea1588cb279f3a522cc3d (patch)
tree7a8b8e56acea58ebf899453d0398b4b4aeaf3c5f /configs/a3y17lte_defconfig
parentf8f47e6ff214a3ba7a61025bcc4dc058f507c279 (diff)
lmb: Default to not-LMB_USE_MAX_REGIONS
The LMB code allows for picking a hard limit on the number of regions it can know of, or to dynamically allocate these regions. The reason for this choice is to allow for the compiler to perform a size optimization in the common case. This optimization however, is very small, ranging from 196 bytes to 15 bytes saved, or in some cases, being larger. Now that we also have more regions covered by LMB (in order to protect various parts of our self at run time), the default of 8 is also much easier to hit and leads to non-obvious error messages (which imply that an area is protected, not that we're out of areas to add to the list). Switch to the dynamic use as the default. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'configs/a3y17lte_defconfig')
-rw-r--r--configs/a3y17lte_defconfig1
1 files changed, 0 insertions, 1 deletions
diff --git a/configs/a3y17lte_defconfig b/configs/a3y17lte_defconfig
index 124fb8d476..0215c5f234 100644
--- a/configs/a3y17lte_defconfig
+++ b/configs/a3y17lte_defconfig
@@ -24,4 +24,3 @@ CONFIG_SYS_BOOTM_LEN=0x2000000
CONFIG_CMD_GPIO=y
CONFIG_CMD_I2C=y
CONFIG_DM_I2C_GPIO=y
-CONFIG_LMB_MAX_REGIONS=64