Jump to content

Recommended Posts

Posted

Please help me to change PCIRootUID value in DSDT from 0 to 1, iDon't understand how to do this correctly...

 

        Device (PCI0)
       {
           Name (_HID, EisaId ("PNP0A08"))
           Name (_CID, EisaId ("PNP0A03"))
           Name (_ADR, Zero)
           Method (^BN00, 0, NotSerialized)
           {
               Return (Zero)
           }
           Method (_BBN, 0, NotSerialized)
           {
               Return (BN00 ())
           }
           Name (_UID, Zero)
           Method (_PRT, 0, NotSerialized)
           {
               If (PICM)
               {
                   Return (AR00 ())
               }
               Return (PR00 ())
           }
           OperationRegion (HBUS, PCI_Config, Zero, 0x0100)
           Field (HBUS, DWordAcc, NoLock, Preserve)
           {

Thanks in advance.

Posted

hello

 

 Device (PCI0)
       {
           Name (_HID, EisaId ("PNP0A08"))
           Name (_CID, EisaId ("PNP0A03"))
           Name (_ADR, Zero)
           Method (^BN00, 0, NotSerialized)

 

 Device (PCI0)
       {
           Name (_HID, EisaId ("PNP0A08"))
           Name (_CID, EisaId ("PNP0A03"))
           Name (_UID, 0x01)
           Method (^BN00, 0, NotSerialized)

 

try that


good hack

PB Easy Note TM 86 - i5 430 M - H55M - Ram - 6 GB - Alc272 - Radeon HD 5470 512 QE/CI

Lenovo G500 - i5 3230m - HM77 - Ram - 8 GB - Conexant audio - HD 4000

My OS X Files 

Posted

hello


u dsdt is already set to 1


usualy what use is this


Device (PCI0)

{

Name (_HID, EisaId ("PNP0A08"))

Name (_CID, EisaId ("PNP0A03"))

Name (_UID, Zero)

Method (^BN00, 0, NotSerialized)


Name (_UID, Zero) u have already Name (_UID, 0x01)


good hack

PB Easy Note TM 86 - i5 430 M - H55M - Ram - 6 GB - Alc272 - Radeon HD 5470 512 QE/CI

Lenovo G500 - i5 3230m - HM77 - Ram - 8 GB - Conexant audio - HD 4000

My OS X Files 

Posted

I renamed UID, Zero to UID, One and removed line 1740, now it works. Thanks for the quick reply:)

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...