Advertisement
Guest User

ddsdt

a guest
Nov 8th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Scope (_SB.PCI0.RP05)
  2. {
  3. Device (USB)
  4. {
  5. Name (_ADR, 0x04) // _ADR: Address
  6. Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method
  7. {
  8. Store (Package (0x04)
  9. {
  10. "class-code",
  11. Buffer (0x04)
  12. {
  13. 0x00, 0x00, 0x00, 0x00 // ....
  14. },
  15.  
  16. "device-id",
  17. Buffer (0x04)
  18. {
  19. 0x00, 0x00, 0x00, 0x00 // ....
  20. }
  21.  
  22. }, Local0)
  23. DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
  24. Return (Local0)
  25.  
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement