summaryrefslogtreecommitdiff
path: root/src/mainboard/axus/tc320/irq_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/axus/tc320/irq_tables.c')
-rw-r--r--src/mainboard/axus/tc320/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/axus/tc320/irq_tables.c b/src/mainboard/axus/tc320/irq_tables.c
index 984ff05efb..68df2e4c6d 100644
--- a/src/mainboard/axus/tc320/irq_tables.c
+++ b/src/mainboard/axus/tc320/irq_tables.c
@@ -63,7 +63,7 @@
* Routing description.
* Documentation at: http://www.microsoft.com/whdc/archive/pciirq.mspx
*/
-const struct irq_routing_table intel_irq_routing_table = {
+static const struct irq_routing_table intel_irq_routing_table = {
.signature = PIRQ_SIGNATURE, /* PIRQ signature */
.version = PIRQ_VERSION, /* PIRQ version */
.size = 32 + 16 * CONFIG_IRQ_SLOT_COUNT,/* Max. CONFIG_IRQ_SLOT_COUNT devices */
@@ -118,5 +118,5 @@ const struct irq_routing_table intel_irq_routing_table = {
*/
unsigned long write_pirq_routing_table(unsigned long addr)
{
- return copy_pirq_routing_table(addr);
+ return copy_pirq_routing_table(addr, &intel_irq_routing_table);
}