From 9a76a6de26d63c12dc1c51e4f371dbec74408847 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Wed, 8 Mar 2017 12:12:55 -0600 Subject: [PATCH] kconfig2html: Need to increase the maximum number of default values --- tools/kconfig2html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/kconfig2html.c b/tools/kconfig2html.c index d8ccef63b1..1f7ab89847 100644 --- a/tools/kconfig2html.c +++ b/tools/kconfig2html.c @@ -56,10 +56,10 @@ #define LINE_SIZE 1024 #define SCRATCH_SIZE 2048 -#define MAX_DEPENDENCIES 100 +#define MAX_DEPENDENCIES 128 #define MAX_LEVELS 100 #define MAX_SELECT 64 -#define MAX_DEFAULTS 128 +#define MAX_DEFAULTS 196 #define TAB_SIZE 4 #define VAR_SIZE 80 #define HTML_VAR_SIZE (2*VAR_SIZE + 64)