tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / mainboard / lenovo / x220 / acpi / platform.asl
blob3e9225cd34b032bcf01415af9427bc133bae786a
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2011-2012 The Chromium OS Authors. All rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; version 2 of the License.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  */
16 /* The _PTS method (Prepare To Sleep) is called before the OS is
17  * entering a sleep state. The sleep state number is passed in Arg0
18  */
20 Method(_PTS,1)
22         \_SB.PCI0.LPCB.EC.RADI(0)
25 /* The _WAK method is called on system wakeup */
27 Method(_WAK,1)
29         /* ME may not be up yet.  */
30         Store (0, \_TZ.MEB1)
31         Store (0, \_TZ.MEB2)
33         /* Not implemented.  */
34         Return(Package(){0,0})