Contribute
Register

Problem disabling nvidia

Status
Not open for further replies.
Joined
Apr 2, 2013
Messages
14
Motherboard
Intel QM67
CPU
i5-2520M
Graphics
INTEL HD3000 @1366X768
Mac
  1. MacBook Pro
Mobile Phone
  1. Android
Hello guys,
i was trying to disable nvidia graphics on my dell laptop using rehabman's _off method. but i am getting the following error when i try to call it fro _INI.
9761, 6088, Object is not accessible from this scope (_OFF)

Here is the screenshot of what i have done.
Screen Shot 2017-05-31 at 09.54.36.png

I am attaching my DSDT files also. Can sombody please help me. the _OFF method is inside SSDT-6.dsl...

Thank you.
 

Attachments

  • DSDT.zip
    44.2 KB · Views: 90
Hello guys,
i was trying to disable nvidia graphics on my dell laptop using rehabman's _off method. but i am getting the following error when i try to call it fro _INI.
9761, 6088, Object is not accessible from this scope (_OFF)

Here is the screenshot of what i have done.
View attachment 258463

I am attaching my DSDT files also. Can sombody please help me. the _OFF method is inside SSDT-6.dsl...

Thank you.

Your _OFF method is in SSDT-6. You should be calling it from there.
Just add an _INI right after _OFF...

eg...
Code:
        Method (_OFF, 0, Serialized)  // _OFF: Power Off
        {
.. original _OFF code
        }
// added _INI
        Method(_INI) { _OFF() }
 
Status
Not open for further replies.
Back
Top