soc: Remove copyright notices
[coreboot.git] / src / soc / intel / braswell / acpi / irqroute.asl
blob60c2cc88994391837db769b9402f8467beb670aa
1 /*
2  * This file is part of the coreboot project.
3  *
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; version 2 of the License.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
15 /* PCI Interrupt Routing */
16 Method(_PRT)
18         If (PICM) {
19                 Return (Package() {
20                         #undef PIC_MODE
21                         #include <soc/intel/braswell/acpi/irq_helper.h>
22                         PCI_DEV_PIRQ_ROUTES
23                 })
24         } Else {
25                 Return (Package() {
26                         #define PIC_MODE
27                         #include <soc/intel/braswell/acpi/irq_helper.h>
28                         PCI_DEV_PIRQ_ROUTES
29                 })
30         }