summaryrefslogtreecommitdiff
path: root/util/sconfig/sconfig.y
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2016-05-07 01:11:14 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2016-05-08 21:37:36 +0200
commit2e78aa5a78d67d8bd5ef90bb89d01fc82faadc8a (patch)
tree6f7200ed0eb15dfa5f441e23db0bed0ed2a06183 /util/sconfig/sconfig.y
parent66fbeaec981707fa74e7296b0ef23d802dcfedea (diff)
downloadcoreboot-2e78aa5a78d67d8bd5ef90bb89d01fc82faadc8a.tar.xz
util/sconfig: Fix warnings
and re-generate _shipped files Change-Id: I7a18824d64d3f6212e8566695376bf97e2196ee2 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/14733 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/sconfig/sconfig.y')
-rwxr-xr-xutil/sconfig/sconfig.y5
1 files changed, 4 insertions, 1 deletions
diff --git a/util/sconfig/sconfig.y b/util/sconfig/sconfig.y
index 66c5b6df74..a5a063ff9e 100755
--- a/util/sconfig/sconfig.y
+++ b/util/sconfig/sconfig.y
@@ -3,7 +3,7 @@
* sconfig, coreboot device tree compiler
*
* Copyright (C) 2010 coresystems GmbH
- * written by Patrick Georgi <patrick.georgi@coresystems.de>
+ * written by Patrick Georgi <patrick@georgi-clan.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -17,6 +17,9 @@
#include "sconfig.h"
+int yylex();
+void yyerror(const char *s);
+
static struct device *cur_parent, *cur_bus;
%}