summaryrefslogtreecommitdiff
path: root/util/sconfig/sconfig.y
diff options
context:
space:
mode:
authorPatrick Georgi <patrick.georgi@coresystems.de>2010-05-05 12:05:25 +0000
committerPatrick Georgi <patrick.georgi@coresystems.de>2010-05-05 12:05:25 +0000
commit68befd5d34ce22b03ea78028dc362eec0440f83c (patch)
treec5b67ed5900c396cb0d9a57a7ed6ce994bd56b3f /util/sconfig/sconfig.y
parent114e7b2990cd2b64956ddb271638646ef5108d54 (diff)
downloadcoreboot-68befd5d34ce22b03ea78028dc362eec0440f83c.tar.xz
sconfig: Make cur_bus and cur_parent local to the parser.
Instead of accessing them globally, pass them as arguments where necessary. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5524 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/sconfig/sconfig.y')
-rwxr-xr-xutil/sconfig/sconfig.y12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/sconfig/sconfig.y b/util/sconfig/sconfig.y
index 3860569a95..162ce7050d 100755
--- a/util/sconfig/sconfig.y
+++ b/util/sconfig/sconfig.y
@@ -21,7 +21,7 @@
#include "sconfig.h"
-struct device *cur_parent, *cur_bus;
+static struct device *cur_parent, *cur_bus;
%}
%union {
@@ -31,7 +31,7 @@ struct device *cur_parent, *cur_bus;
}
%token CHIP DEVICE REGISTER BOOL BUS RESOURCE END EQUALS HEX STRING PCI PNP I2C APIC APIC_CLUSTER PCI_DOMAIN IRQ DRQ IO NUMBER
%%
-devtree: devchip { postprocess_devtree(); } ;
+devtree: { cur_parent = cur_bus = head; } devchip { postprocess_devtree(); } ;
devchip: chip | device ;
@@ -40,7 +40,7 @@ devices: devices devchip | devices registers | ;
devicesorresources: devicesorresources devchip | devicesorresources resource | ;
chip: CHIP STRING /* == path */ {
- $<device>$ = new_chip($<string>2);
+ $<device>$ = new_chip(cur_parent, cur_bus, $<string>2);
cur_parent = $<device>$;
}
devices END {
@@ -50,7 +50,7 @@ chip: CHIP STRING /* == path */ {
};
device: DEVICE BUS NUMBER /* == devnum */ BOOL {
- $<device>$ = new_device($<number>2, $<string>3, $<number>4);
+ $<device>$ = new_device(cur_parent, cur_bus, $<number>2, $<string>3, $<number>4);
cur_parent = $<device>$;
cur_bus = $<device>$;
}
@@ -62,9 +62,9 @@ device: DEVICE BUS NUMBER /* == devnum */ BOOL {
};
resource: RESOURCE NUMBER /* == resnum */ EQUALS NUMBER /* == resval */
- { add_resource($<number>1, strtol($<string>2, NULL, 0), strtol($<string>4, NULL, 0)); } ;
+ { add_resource(cur_parent, $<number>1, strtol($<string>2, NULL, 0), strtol($<string>4, NULL, 0)); } ;
registers: REGISTER STRING /* == regname */ EQUALS STRING /* == regval */
- { add_register($<string>2, $<string>4); } ;
+ { add_register(cur_parent, $<string>2, $<string>4); } ;
%%