diff options
| author | Bjorn Helgaas <bhelgaas@google.com> | 2026-04-13 20:50:09 +0300 |
|---|---|---|
| committer | Bjorn Helgaas <bhelgaas@google.com> | 2026-04-13 20:50:09 +0300 |
| commit | 9cba2840beabcaec443bab1e3de3fd2f8966c62d (patch) | |
| tree | 818da872245f43fecd56212b62bc0da87918b08e | |
| parent | 764fd8338622d4e4c763bca6fa8e3ba747473eb6 (diff) | |
| parent | 56435b70f778995c696d53624ba93a429aa38432 (diff) | |
| download | linux-9cba2840beabcaec443bab1e3de3fd2f8966c62d.tar.xz | |
Merge branch 'pci/controller/dwc-amd-mdb'
- Correct the IRQ number logged in INTx error message (Rakuram Eswaran)
* pci/controller/dwc-amd-mdb:
PCI: amd-mdb: Correct IRQ number in INTx error message
| -rw-r--r-- | drivers/pci/controller/dwc/pcie-amd-mdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/dwc/pcie-amd-mdb.c b/drivers/pci/controller/dwc/pcie-amd-mdb.c index 3c6e837465bb..7e50e11fbffd 100644 --- a/drivers/pci/controller/dwc/pcie-amd-mdb.c +++ b/drivers/pci/controller/dwc/pcie-amd-mdb.c @@ -389,7 +389,7 @@ static int amd_mdb_setup_irq(struct amd_mdb_pcie *pcie, IRQF_NO_THREAD, NULL, pcie); if (err) { dev_err(dev, "Failed to request INTx IRQ %d, err=%d\n", - irq, err); + pcie->intx_irq, err); return err; } |
