summaryrefslogtreecommitdiff
path: root/dtc-parser.y
diff options
context:
space:
mode:
Diffstat (limited to 'dtc-parser.y')
-rw-r--r--dtc-parser.y7
1 files changed, 4 insertions, 3 deletions
diff --git a/dtc-parser.y b/dtc-parser.y
index 66e243d..1bfbfa3 100644
--- a/dtc-parser.y
+++ b/dtc-parser.y
@@ -18,6 +18,9 @@
* USA
*/
+%glr-parser
+%locations
+
%{
#include "dtc.h"
@@ -69,8 +72,6 @@ extern struct boot_info *the_boot_info;
%type <str> label
%type <str> nodename
-%glr-parser
-
%%
sourcefile: memreserves devicetree {
@@ -160,5 +161,5 @@ label: DT_LABEL { $$ = $1; }
void yyerror (char const *s)
{
- fprintf (stderr, "%s\n", s);
+ fprintf (stderr, "%s at line %d\n", s, yylloc.first_line);
}