HAOUAS Elyes (ehaouas@noos.fr) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/6447
-gerrit
commit 6d5294c7c3a734c2773a09d58540176d060c24dd Author: Elyes HAOUAS ehaouas@noos.fr Date: Fri Aug 1 13:54:08 2014 +0200
southbridge fsp_rangeley: Add missing header guard for irq_helper.h
Change-Id: I385a53b5e320c1d50aa33e80415e4a68d8ca8ab7 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- src/southbridge/intel/fsp_rangeley/acpi/irq_helper.h | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/src/southbridge/intel/fsp_rangeley/acpi/irq_helper.h b/src/southbridge/intel/fsp_rangeley/acpi/irq_helper.h index 4a298d3..b05ad8c 100644 --- a/src/southbridge/intel/fsp_rangeley/acpi/irq_helper.h +++ b/src/southbridge/intel/fsp_rangeley/acpi/irq_helper.h @@ -24,6 +24,10 @@ * This method uses #defines in irqroute.h along with the macros contained * in this file to generate an IRQ routing for each PCI device in the system. */ + +#ifndef IRQ_HELPER_H +#define IRQ_HELPER_H + #undef PCI_DEV_PIRQ_ROUTES #undef ACPI_DEV_IRQ #undef PCI_DEV_PIRQ_ROUTE @@ -53,3 +57,5 @@
/* Include the mainboard irq route definition */ #include "irqroute.h" + +#endif /* IRQ_HELPER_H */