mirror of
https://github.com/edk2-porting/edk2-msm
synced 2025-02-22 21:56:17 +00:00
Tip: You can build DSDT via build.sh, for example: `./build.sh -A -d j716f --skip-rootfs-gen` WARNING: This hasn't been tested at all
25 lines
470 B
C
25 lines
470 B
C
//
|
|
// NOTE: The 3rd parameter (i.e. ComplianceRevision) must be >=2 for 64-bit integer support.
|
|
//
|
|
DefinitionBlock("DSDT.AML", "DSDT", 0x02, "QCOMM ", "SDM850 ", 3)
|
|
{
|
|
Scope(\_SB_) {
|
|
|
|
// Include("addSub.asl")
|
|
Include("dsdt_common.asl")
|
|
// Include("cust_dsdt.asl")
|
|
|
|
// Include("usb.asl")
|
|
|
|
//
|
|
// Buttons
|
|
//
|
|
// Include("cust_arraybutton.asl")
|
|
|
|
//
|
|
// Bluetooth
|
|
//
|
|
// Include("wcnss_bt.asl")
|
|
}
|
|
}
|