diff options
author | jkim <jkim@FreeBSD.org> | 2009-06-25 23:20:50 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2009-06-25 23:20:50 +0000 |
commit | b0288ab5352e77c07fffaf51a4193f8de02a7aec (patch) | |
tree | 90ff140546ac1c8f9223f343715887361e86492a /compiler/aslcompiler.y | |
parent | 02935ea0ac5fb3dfc5e452b2a18288d7e523dc1b (diff) | |
download | FreeBSD-src-b0288ab5352e77c07fffaf51a4193f8de02a7aec.zip FreeBSD-src-b0288ab5352e77c07fffaf51a4193f8de02a7aec.tar.gz |
Import ACPICA 20090625
Diffstat (limited to 'compiler/aslcompiler.y')
-rw-r--r-- | compiler/aslcompiler.y | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/aslcompiler.y b/compiler/aslcompiler.y index 053574f..1d89f2c 100644 --- a/compiler/aslcompiler.y +++ b/compiler/aslcompiler.y @@ -400,6 +400,7 @@ AslLocalAllocate (unsigned int Size); %token <i> PARSEOP_REGIONSPACE_CMOS %token <i> PARSEOP_REGIONSPACE_EC %token <i> PARSEOP_REGIONSPACE_IO +%token <i> PARSEOP_REGIONSPACE_IPMI %token <i> PARSEOP_REGIONSPACE_MEM %token <i> PARSEOP_REGIONSPACE_PCI %token <i> PARSEOP_REGIONSPACE_PCIBAR @@ -2175,6 +2176,7 @@ RegionSpaceKeyword | PARSEOP_REGIONSPACE_SMBUS {$$ = TrCreateLeafNode (PARSEOP_REGIONSPACE_SMBUS);} | PARSEOP_REGIONSPACE_CMOS {$$ = TrCreateLeafNode (PARSEOP_REGIONSPACE_CMOS);} | PARSEOP_REGIONSPACE_PCIBAR {$$ = TrCreateLeafNode (PARSEOP_REGIONSPACE_PCIBAR);} + | PARSEOP_REGIONSPACE_IPMI {$$ = TrCreateLeafNode (PARSEOP_REGIONSPACE_IPMI);} ; AddressSpaceKeyword |