From 5e7c8a39e634235e2ee696a39bf1f404fc707fda Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Fri, 20 Sep 2019 17:42:08 -0400 Subject: [PATCH] genboardscfg.py: Remove "warnings" print section We tell kconfiglib to not print any warnings to us so drop this code as it will be unused. Cc: Masahiro Yamada Signed-off-by: Tom Rini --- tools/genboardscfg.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tools/genboardscfg.py b/tools/genboardscfg.py index e9a9c11..9fd2bd3 100755 --- a/tools/genboardscfg.py +++ b/tools/genboardscfg.py @@ -165,11 +165,7 @@ class KconfigScanner: else: f.write(line[colon + 1:]) - warnings = self._conf.load_config(self._tmpfile) - if warnings: - for warning in warnings: - print('%s: %s' % (defconfig, warning)) - + self._conf.load_config(self._tmpfile) try_remove(self._tmpfile) self._tmpfile = None -- 2.7.4