tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / vendorcode / google / chromeos / acpi / ramoops.asl
blob5a8ed8663258340b82da53f7405df8843d3d4722
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2014 Google Inc.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
17 Scope (\_SB)
19         Device(RMOP)
20         {
21                 Name (_HID, "GOOG9999")
22                 Name (_CID, "GOOG9999")
23                 Name (_UID, 1)
25                 Name (RBUF, ResourceTemplate()
26                 {
27                         Memory32Fixed (ReadWrite, 0, 0, MRES)
28                 })
30                 Method (_CRS)
31                 {
32                         CreateDwordField (^RBUF, ^MRES._BAS, RBAS)
33                         CreateDwordField (^RBUF, ^MRES._LEN, RLEN)
34                         Store (\RMOB, RBAS)
35                         Store (\RMOL, RLEN)
36                         Return (^RBUF)
37                 }
38         }