diff options
author | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-08-13 15:40:54 +0000 |
---|---|---|
committer | jljusten <jljusten@6f19259b-4bc3-4df7-8a09-765794883524> | 2012-08-13 15:40:54 +0000 |
commit | ba01f3b98fa0fd18c1aa28a003b336d0d3720d10 (patch) | |
tree | ebcdfea5f5682b88e949fb2c36de0ac2cbed81ea /OvmfPkg/AcpiTables | |
parent | b636c6e5ff206df71d0307e06d6c6ee2af976b3e (diff) | |
download | edk2-platforms-ba01f3b98fa0fd18c1aa28a003b336d0d3720d10.tar.xz |
OvmfPkg: fix the _UID of \_SB.PCI0.LPC.LNKD in the DSDT
LNKD is the fourth PNP0C0F.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13623 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'OvmfPkg/AcpiTables')
-rw-r--r-- | OvmfPkg/AcpiTables/Dsdt.asl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OvmfPkg/AcpiTables/Dsdt.asl b/OvmfPkg/AcpiTables/Dsdt.asl index 91d412b6d5..be6fc71d78 100644 --- a/OvmfPkg/AcpiTables/Dsdt.asl +++ b/OvmfPkg/AcpiTables/Dsdt.asl @@ -342,7 +342,7 @@ DefinitionBlock ("Dsdt.aml", "DSDT", 1, "INTEL ", "OVMF ", 3) { //
Device (LNKD) {
Name (_HID, EISAID("PNP0C0F"))
- Name (_UID, 1)
+ Name (_UID, 4)
Method (_STA, 0, NotSerialized) { Return (PSTA (PIRD)) }
Method (_DIS, 0, NotSerialized) {
|