lkml.org 
[lkml]   [2016]   [Mar]   [16]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/2] kconfig: add unexpected data itself to warning
Date
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 <pebolle@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
\
 
 \ /
  Last update: 2016-03-16 12:41    [W:0.094 / U:0.020 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site