From 2bbd0c29261d985e21dc69a731c895ee2791eb4b Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 8 Apr 2010 12:46:18 +0000 Subject: sconfig: Mangle - to _ for struct names, too. Signed-off-by: Patrick Georgi Acked-by: Patrick Georgi git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5375 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/sconfig/sconfig.tab.c_shipped | 17 +++++++++-------- util/sconfig/sconfig.y | 1 + 2 files changed, 10 insertions(+), 8 deletions(-) (limited to 'util') diff --git a/util/sconfig/sconfig.tab.c_shipped b/util/sconfig/sconfig.tab.c_shipped index d73a503a12..341421b1df 100644 --- a/util/sconfig/sconfig.tab.c_shipped +++ b/util/sconfig/sconfig.tab.c_shipped @@ -562,7 +562,7 @@ static const yytype_int8 yyrhs[] = static const yytype_uint16 yyrline[] = { 0, 132, 132, 152, 152, 154, 154, 154, 156, 156, - 156, 158, 158, 214, 214, 293, 311 + 156, 158, 158, 215, 215, 294, 312 }; #endif @@ -1511,6 +1511,7 @@ yyreduce: char *c; for (c = (yyval.device)->name_underscore; *c; c++) { if (*c == '/') *c = '_'; + if (*c == '-') *c = '_'; } (yyval.device)->type = chip; (yyval.device)->chip = (yyval.device); @@ -1536,7 +1537,7 @@ yyreduce: case 12: /* Line 1455 of yacc.c */ -#line 186 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 187 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" { cur_parent = (yyvsp[(3) - (5)].device)->parent; @@ -1569,7 +1570,7 @@ yyreduce: case 13: /* Line 1455 of yacc.c */ -#line 214 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 215 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" { (yyval.device) = new_dev(); (yyval.device)->bustype = (yyvsp[(2) - (4)].number); @@ -1625,7 +1626,7 @@ yyreduce: case 14: /* Line 1455 of yacc.c */ -#line 264 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 265 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" { cur_parent = (yyvsp[(5) - (7)].device)->parent; cur_bus = (yyvsp[(5) - (7)].device)->bus; @@ -1659,7 +1660,7 @@ yyreduce: case 15: /* Line 1455 of yacc.c */ -#line 294 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 295 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" { struct resource *r = malloc(sizeof(struct resource)); memset (r, 0, sizeof(struct resource)); @@ -1680,7 +1681,7 @@ yyreduce: case 16: /* Line 1455 of yacc.c */ -#line 312 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 313 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" { struct reg *r = malloc(sizeof(struct reg)); memset (r, 0, sizeof(struct reg)); @@ -1711,7 +1712,7 @@ yyreduce: /* Line 1455 of yacc.c */ -#line 1715 "/home/Patrick/work/coreboot/util/sconfig/sconfig.tab.c_shipped" +#line 1716 "/home/Patrick/work/coreboot/util/sconfig/sconfig.tab.c_shipped" default: break; } YY_SYMBOL_PRINT ("-> $$ =", yyr1[yyn], &yyval, &yyloc); @@ -1923,7 +1924,7 @@ yyreturn: /* Line 1675 of yacc.c */ -#line 339 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" +#line 340 "/home/Patrick/work/coreboot/util/sconfig/sconfig.y" void pass0(FILE *fil, struct device *ptr) { if ((ptr->type == device) && (ptr->id != 0) && (!ptr->used)) diff --git a/util/sconfig/sconfig.y b/util/sconfig/sconfig.y index 180ea8a735..06fd206646 100755 --- a/util/sconfig/sconfig.y +++ b/util/sconfig/sconfig.y @@ -163,6 +163,7 @@ chip: CHIP STRING /* == path */ { char *c; for (c = $$->name_underscore; *c; c++) { if (*c == '/') *c = '_'; + if (*c == '-') *c = '_'; } $$->type = chip; $$->chip = $$; -- cgit v1.2.3