tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / northbridge / intel / sch / acpi / peg.asl
blob227ca27004d360694809abaa1c723e16fcee7b23
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
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 Device (PEGP)
19         Name (_ADR, 0x00010000)
21         // PCI Interrupt Routing.
22         Method (_PRT)
23         {
24                 If (PICM) {
25                         Return (Package() {
26                                 Package() { 0x0000ffff, 0, 0, 16 },
27                                 Package() { 0x0000ffff, 1, 0, 17 },
28                                 Package() { 0x0000ffff, 2, 0, 18 },
29                                 Package() { 0x0000ffff, 3, 0, 19 }
30                         })
31                 } Else {
32                         Return (Package() {
33                                 Package() { 0x0000ffff, 0, \_SB.PCI0.LPCB.LNKA, 0 },
34                                 Package() { 0x0000ffff, 1, \_SB.PCI0.LPCB.LNKB, 0 },
35                                 Package() { 0x0000ffff, 2, \_SB.PCI0.LPCB.LNKC, 0 },
36                                 Package() { 0x0000ffff, 3, \_SB.PCI0.LPCB.LNKD, 0 }
37                         })
38                 }
40         }