Advertisement
kradnozd

RehabMan IRQ Fix

Jan 27th, 2015
414
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. #Maintained by: RehabMan for: Laptop Patches
  2. #system_IRQ.txt
  3.  
  4. # This can fix non-working audio and also has an affect on HPET.
  5. #
  6. # Use this if you have issues with patched AppleHDA (required on almost all laptops)
  7. # or if you have issues with HPET (restart after wake).
  8.  
  9. # IRQ fix
  10. into device name_hid PNP0000 code_regex IRQNoFlags\s\(\)\n\s+\{(\d+)\} remove_matched;
  11. into device name_hid PNP0100 code_regex IRQNoFlags\s\(\)\n\s+\{(\d+)\} remove_matched;
  12. into device name_hid PNP0B00 code_regex IRQNoFlags\s\(\)\n\s+\{(\d+)\} remove_matched;
  13. into device name_hid PNP0103 code_regex IRQNoFlags\s\(\)\n\s+\{.*\} removeall_matched;
  14. into device name_hid PNP0103 code_regex Name\s\(([^,]+),\sResourceTemplate\s\(\).*\n\s+\{((?:.|\n)*)\}\) replace_matched
  15. begin
  16. Name (%1, ResourceTemplate()\n
  17. {\n
  18. IRQNoFlags() { 0, 8, 11, 15 }\n
  19. %2
  20. })\n
  21. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement