Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39924 )
Change subject: [TEST] sconfig: Don't allow chips directly below chips (why should we?) ......................................................................
[TEST] sconfig: Don't allow chips directly below chips (why should we?)
Change-Id: I17d166f8a9407482ec1de9864d1581be4f161ae2 Signed-off-by: Nico Huber nico.huber@secunet.com --- M util/sconfig/sconfig.y 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/39924/1
diff --git a/util/sconfig/sconfig.y b/util/sconfig/sconfig.y index d55b18b..0aa7ec0 100755 --- a/util/sconfig/sconfig.y +++ b/util/sconfig/sconfig.y @@ -35,7 +35,7 @@ %% devtree: { cur_parent = root_parent; } chip;
-chipchildren: chipchildren device | chipchildren chip | chipchildren registers | /* empty */ ; +chipchildren: chipchildren device | chipchildren registers | /* empty */ ;
devicechildren: devicechildren device | devicechildren chip | devicechildren resource | devicechildren subsystemid | devicechildren ioapic_irq | devicechildren smbios_slot_desc | /* empty */ ;