forked from RehabMan/HP-ProBook-4x30s-DSDT-Patch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
08b_BCM4322x.txt
31 lines (25 loc) · 988 Bytes
/
08b_BCM4322x.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
28
29
#Maintained by: RehabMan for: HP Probook 4x30s/4x40s
# 08b_BCM4322x.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() { 0xa0, 0x43, 0x00, 0x00 },\n
"compatible", Buffer() { "pci14e4,43a0" },\n
"name", "AirPort Extreme",\n
"model", Buffer() { "Broadcom BCM4322x 802.11 b/g/n Wireless Network Adapter" },\n
"AAPL,slot-name", Buffer() { "AirPort" },\n
"device_type", Buffer() { "AirPort" },\n
"built-in", Buffer () {0x00},\n
//"subsystem-id", Buffer() { 0x8F, 0x00, 0x00, 0x00 },\n
//"subsystem-vendor-id", Buffer() { 0x6B, 0x10, 0x00, 0x00 },\n
})\n
}\n
end;