morpheousman Posted August 15, 2019 Share Posted August 15, 2019 Using an Atheros AR5B195 with a Latitude e7440. WIFI is working with kext edit, but I would like to try it with DSDT patch for AR9285. I am using the DSDT from the Guide, but I cannot save the DSDT after the patch because of syntax errors. DSDT.aml.zip Link to comment Share on other sites More sharing options...
Moderators Jake Lo Posted August 15, 2019 Moderators Share Posted August 15, 2019 What syntax error? This one? Run this the patched in the link FYI, if you're patching the wifi, make sure it's under RP04/PXSX Link to comment Share on other sites More sharing options...
morpheousman Posted August 15, 2019 Author Share Posted August 15, 2019 Okay, cool. Could you tell me what part of this code would change patch from RP02 to RP04? # Airport fix works with vanilla IO80211 kext into method label _DSM parent_label PXSX remove_entry; into device label PXSX parent_label RP02 insert begin Method (_DSM, 4, NotSerialized)\n {\n If (LEqual (Arg2, Zero)) { Return (Buffer() { 0x03 } ) }\n Return (Package()\n {\n "device-id", Buffer() { 0x30, 0x00, 0x00, 0x00 },\n "name", "pci168c,30",\n "AAPL,slot-name", Buffer() { "AirPort" },\n "device_type", Buffer() { "AirPort" },\n "model", Buffer() { "Atheros 9285 802.11 b/g/n Wireless Network Adapter" },\n "subsystem-id", Buffer() { 0x8F, 0x00, 0x00, 0x00 },\n "subsystem-vendor-id", Buffer() { 0x6B, 0x10, 0x00, 0x00 },\n })\n }\n end; Link to comment Share on other sites More sharing options...
Moderators Jake Lo Posted August 15, 2019 Moderators Share Posted August 15, 2019 It's pretty obvious, change this line, rename RP02 to RP04 into device label PXSX parent_label RP02 insert Link to comment Share on other sites More sharing options...
morpheousman Posted August 15, 2019 Author Share Posted August 15, 2019 Ah, duh! lol Yeah, pretty apparent if you read the entire code, and not just everything after begin Method (_DSM, 4, NotSerialized)\n I get frustrated too easy with DSDT editing. Thanks for the help. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now