Skip to content

Commit 7ec0852

Browse files
committed
src/soc/intel/meteorlake/fsp_params.c: Fix IRQ macro for IGD
There was a bug which assignd IRQ for device 2.2 instead of 2.0 by using wrong macro. Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
1 parent a8598c8 commit 7ec0852

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/soc/intel/meteorlake/fsp_params.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static const struct slot_irq_constraints irq_constraints[] = {
6060
.slot = PCI_DEV_SLOT_IGD,
6161
.fns = {
6262
/* INTERRUPT_PIN is RO/0x01 */
63-
FIXED_INT_ANY_PIRQ(PCI_DEV_SLOT_IGD, PCI_INT_A),
63+
FIXED_INT_ANY_PIRQ(PCI_DEVFN_IGD, PCI_INT_A),
6464
},
6565
},
6666
{

0 commit comments

Comments
 (0)