You should see the below line if it is loaded.
78 0 0x555eb000 0x3000 0x2000 com.apple.driver.AppleLPC (1.4.12) <14 5 4 3>In order to run the code above you may need to install this.
gurde, on Sep 24 2010, 01:51 PM, said:
Quote
Device (LPC) // Names vary.
{
Name (_ADR, 0x001F0000) // Search for this.
Method (_DSM, 4, NotSerialized) // Start from here
{
Store (Package (0x02)
{
"device-id",
Buffer (0x04)
{
0x16, 0x29, 0x00, 0x00
}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
} // Stop here. Rest is removed.
....
You only need to change 0x16, 0x29, 0x00, 0x00 to 0x15, 0x28, 0x00, 0x00.
gurde, on Sep 24 2010, 08:05 PM, said:
Device (ISAB)
{
Name (_ADR, 0x001F0000)
Device (PS2M)
{
Name (_HID, EisaId ("PNP0F13"))
Name (CRS, ResourceTemplate ()
{
IRQNoFlags ()
{12}
})
Method (_CRS, 0, NotSerialized)
{
Return (CRS)
}
}
Device (ISAB)
{
Name (_ADR, 0x001F0000)
Method (_DSM, 4, NotSerialized) // Start from here
{
Store (Package (0x02)
{
"device-id",
Buffer (0x04)
{
0x15, 0x28, 0x00, 0x00 // Your device id.
}
}, Local0)
DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
Return (Local0)
} // Stop here. Rest is removed.
Device (PS2M)
{
Name (_HID, EisaId ("PNP0F13"))
Name (CRS, ResourceTemplate ()
{
IRQNoFlags ()
{12}
})
Method (_CRS, 0, NotSerialized)
{
Return (CRS)
}
}
0 members, 0 guests, 0 anonymous users