forked from RehabMan/HP-ProBook-4x30s-DSDT-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path08a_AR9285.txt
29 lines (23 loc) · 892 Bytes
/
08a_AR9285.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#Maintained by: RehabMan for: HP Probook 4x30s/4x40s
# 08a_AR9285.txt
into method label _DSM parent_label WNIC remove_entry;
into method label _DSM parent_label ARPT remove_entry;
into all label WNIC set_label begin ARPT end;
# Airport fix works with vanilla IO80211 kext
into device label ARPT 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", Buffer() { "pci168c,30" },\n
"model", Buffer() { "Atheros 9x8x 802.11 b/g/n Wireless Network Adapter" },\n
"AAPL,slot-name", Buffer() { "AirPort" },\n
"device_type", Buffer() { "AirPort" },\n
"subsystem-id", Buffer() { 0x8F, 0x00, 0x00, 0x00 },\n
"subsystem-vendor-id", Buffer() { 0x6B, 0x10, 0x00, 0x00 },\n
})\n
}\n
end;