c048102f5b
On several occasions, I've accidentally put properties after subnodes in a dts file. I've then spent ages thinking that the resulting syntax error was because of something else. This patch arranges for this specific syntax error to generate a more specific and useful error message. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
9 lines
51 B
Text
9 lines
51 B
Text
/dts-v1/;
|
|
|
|
/ {
|
|
node1 {
|
|
};
|
|
prop;
|
|
node2 {
|
|
};
|
|
};
|