blob: 5bd9e0739bf807e90ae76ef69b29c9022d202e84 (
plain)
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
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include "globalnvs.asl"
Scope(\_SB) {
/* global utility methods expected within the \_SB scope */
#include <arch/x86/acpi/globutil.asl>
#include <soc/amd/common/acpi/gpio_bank_lib.asl>
#include "pci_int_defs.asl"
#include "mmio.asl"
#include "pci0.asl"
} /* End \_SB scope */
#include <soc/amd/common/acpi/platform.asl>
/*
* Platform Wake Notify
*
* This is called by soc/amd/common/acpi/platform.asl.
*/
Method (PNOT)
{
}
|