aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/packardbell/ms2290/acpi/platform.asl
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-10-06 13:37:51 +0200
committerMichael Niewöhner <foss@mniewoehner.de>2021-01-24 21:47:40 +0000
commit488f5d85934d396d3f487e8a849d1260ca8e4c9b (patch)
treeb8d4432f6fb0e419a922e211f21b081ad505d44d /src/mainboard/packardbell/ms2290/acpi/platform.asl
parenta59b5f8ca32f72414823e875ec66398a1447d948 (diff)
mb/packardbell: Convert to ASL 2.0 syntax
Built for packardbell/ms2290 provides same build/dsdt.dsl file. Change-Id: I5f1dbb2595c3ee8cb35bb8a6431288f4a96ce978 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/46084 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Diffstat (limited to 'src/mainboard/packardbell/ms2290/acpi/platform.asl')
-rw-r--r--src/mainboard/packardbell/ms2290/acpi/platform.asl22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/mainboard/packardbell/ms2290/acpi/platform.asl b/src/mainboard/packardbell/ms2290/acpi/platform.asl
index 297eeb4f31..9ec8e6ef41 100644
--- a/src/mainboard/packardbell/ms2290/acpi/platform.asl
+++ b/src/mainboard/packardbell/ms2290/acpi/platform.asl
@@ -46,47 +46,47 @@ Scope(\_SB)
*/
/* Let's assume we're running at least Windows 2000 */
- Store (2000, OSYS)
+ OSYS = 2000
If (CondRefOf(_OSI)) {
If (_OSI("Windows 2001")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2001 SP1")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2001 SP2")) {
- Store (2002, OSYS)
+ OSYS = 2002
}
If (_OSI("Windows 2001.1")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2001.1 SP1")) {
- Store (2001, OSYS)
+ OSYS = 2001
}
If (_OSI("Windows 2006")) {
- Store (2006, OSYS)
+ OSYS = 2006
}
If (_OSI("Windows 2006.1")) {
- Store (2006, OSYS)
+ OSYS = 2006
}
If (_OSI("Windows 2006 SP1")) {
- Store (2006, OSYS)
+ OSYS = 2006
}
If (_OSI("Windows 2009")) {
- Store (2009, OSYS)
+ OSYS = 2009
}
If (_OSI("Windows 2012")) {
- Store (2012, OSYS)
+ OSYS = 2012
}
}
}