aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/skylake/include')
-rw-r--r--src/soc/intel/skylake/include/soc/interrupt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/soc/intel/skylake/include/soc/interrupt.h b/src/soc/intel/skylake/include/soc/interrupt.h
index 015ea76ec6..bc654981f1 100644
--- a/src/soc/intel/skylake/include/soc/interrupt.h
+++ b/src/soc/intel/skylake/include/soc/interrupt.h
@@ -31,11 +31,11 @@
#define PCH_PHRC 7
#define PCH_MAX_IRQ_CONFIG 8
-#define DEVICE_INT_CONFIG(dev, func, line, irqno) {\
- .Device = dev, \
- .Function = func, \
- .IntX = line, \
- .Irq = irqno }
+#define DEVICE_INT_CONFIG(devfn, line, irqno) {\
+ .Device = PCI_SLOT(devfn), \
+ .Function = PCI_FUNC(devfn), \
+ .IntX = (line), \
+ .Irq = (irqno) }
#define no_int 0
#define int_A 1