summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2022-06-12 20:01:58 -0400
committerTom Rini <[email protected]>2022-06-28 17:11:48 -0400
commit82e0b51ccba898e7240b2533b440ae9e534783e2 (patch)
tree8dcca55e8cdea8264e0adc6b0a9e333f91dde25a /lib
parent910feb50d40acdd38b3709050fbe6b650e8c4b9d (diff)
Convert CONFIG_ENV_MIN_ENTRIES et al to Kconfig
This converts the following to Kconfig: CONFIG_ENV_MIN_ENTRIES CONFIG_ENV_MAX_ENTRIES Cc: Michal Simek <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib')
-rw-r--r--lib/hashtable.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/hashtable.c b/lib/hashtable.c
index ff5ff726394..90c8465611e 100644
--- a/lib/hashtable.c
+++ b/lib/hashtable.c
@@ -35,13 +35,6 @@
# include <linux/ctype.h>
#endif
-#ifndef CONFIG_ENV_MIN_ENTRIES /* minimum number of entries */
-#define CONFIG_ENV_MIN_ENTRIES 64
-#endif
-#ifndef CONFIG_ENV_MAX_ENTRIES /* maximum number of entries */
-#define CONFIG_ENV_MAX_ENTRIES 512
-#endif
-
#define USED_FREE 0
#define USED_DELETED -1