forked from RehabMan/Intel-NUC-DSDT-Patch
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SSDT-NUC6-SC.dsl
32 lines (28 loc) · 852 Bytes
/
SSDT-NUC6-SC.dsl
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
30
31
32
// NUC6 Skull Canyon model specific SSDT
DefinitionBlock("", "SSDT", 2, "hack", "_NUC6-SC", 0)
{
Device(RMCF)
{
Name(_ADR, 0) // do not remove
// AUDL: Audio Layout
//
// The value here will be used to inject layout-id for HDEF and HDAU
// If set to Ones, no audio injection will be done.
Name(AUDL, 3)
// FAKH: Fake HDMI Aduio
//
// 0: Disable spoofing of HDEF for FakePCIID_Intel_HDMI_Audio.kext
// 1: Allow spoofing of HDEF for FakePCIID_Intel_HDMI_Audio.kext
Name(FAKH, 0)
}
#include "SSDT-XOSI.dsl"
#include "SSDT-IGPU.dsl"
#include "SSDT-USBX.dsl"
#include "SSDT-USB.dsl"
#include "SSDT-XHC.dsl"
#include "SSDT-XDCI.dsl"
#include "SSDT-NUCHDA.dsl"
#include "SSDT-HDEF.dsl"
#include "SSDT-EC.dsl"
}
//EOF