If the .config parser runs into unexpected data it emits a warnings like
    .config:6911:warning: unexpected data

Add the unexpected data itself to the warning too, to make it easier to
discover what is going wrong:
     .config:6911:warning: unexpected data: CONFOG_CHARGER_TPS65217=m

Signed-off-by: Paul Bolle <pebo...@tiscali.nl>
---
 scripts/kconfig/confdata.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 51904c423411..62df2594bc24 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -398,8 +398,12 @@ load:
                        if (conf_set_sym_val(sym, def, def_flags, p))
                                continue;
                } else {
-                       if (line[0] != '\r' && line[0] != '\n')
-                               conf_warning("unexpected data");
+                       if (line[0] != '\r' && line[0] != '\n') {
+                               char *tmp = chomp(line);
+
+                               conf_warning("unexpected data: %s", tmp);
+                               free(tmp);
+                       }
                        continue;
                }
 setsym:
-- 
2.4.3

Reply via email to