I’d prefer a separate commit for each fix.
2 comments:
File src/soc/amd/stoneyridge/acpi/sb_pci0_fch.asl:
Patch Set #1, Line 178: Method(OSFL, 0, NotSerialized)
Separate commit please.
Method(OSFL, 0, NotSerialized)
{
If(LNotEqual(OSVR, Ones))
{
Return(OSVR)
}
Store(0x03, OSVR)
If(CondRefOf(\_OSI, Local0))
{
If(_OSI("Windows 2001"))
{
Store(0x04, OSVR)
}
If(_OSI("Windows 2001.1"))
{
Store(0x05, OSVR)
}
If(_OSI("FreeBSD"))
{
Store(0x06, OSVR)
}
If(_OSI("HP-UX"))
{
Store(0x07, OSVR)
}
If(_OSI("OpenVMS"))
{
Store(0x08, OSVR)
}
If(_OSI("Windows 2001 SP1"))
{
Store(0x09, OSVR)
}
If(_OSI("Windows 2001 SP2"))
{
Store(0x0A, OSVR)
}
If(_OSI("Windows 2001 SP3"))
{
Store(0x0B, OSVR)
}
If(_OSI("Windows 2006"))
{
Store(0x0C, OSVR)
}
If(_OSI("Windows 2006 SP1"))
{
Store(0x0D, OSVR)
}
If(_OSI("Windows 2009"))
{
Store(0x0E, OSVR)
}
If(_OSI("Windows 2012"))
{
Store(0x0F, OSVR)
}
If(_OSI("Windows 2013"))
{
Store(0x10, OSVR)
}
}
Else
{
Store (\_OS, local0)
If(MCTH(local0, "Microsoft Windows NT"))
{
Store(Zero, OSVR)
}
If(MCTH(local0, "Microsoft Windows"))
{
Store(One, OSVR)
}
If(MCTH(local0, "Microsoft WindowsME: Millennium Edition"))
{
Store(0x02, OSVR)
}
If(MCTH(local0, "Linux"))
{
Store(0x03, OSVR)
}
If(MCTH(local0, "FreeBSD"))
{
Store(0x06, OSVR)
}
If(MCTH(local0, "HP-UX"))
{
Store(0x07, OSVR)
}
If(MCTH(local0, "OpenVMS"))
{
Store(0x08, OSVR)
}
}
Return(OSVR)
}
Can this be factored out into a common location?
To view, visit change 33620. To unsubscribe, or for help writing mail filters, visit settings.