diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-12-13 16:29:22 +1200 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-12-13 16:29:22 +1200 |
| commit | 41572e2c05e5892ecdb18e47fd47f208ea648ec6 (patch) | |
| tree | 0dbff34b6691874d29a1fda77695d7dbc98b2edc | |
| parent | Merge tag 'soundwire-6.19-rc1_updated' of git://git.kernel.org/pub/scm/linux/... (diff) | |
| parent | PCI: rzg3s-host: Initialize MSI status bitmap before use (diff) | |
| download | linux-41572e2c05e5892ecdb18e47fd47f208ea648ec6.tar.gz linux-41572e2c05e5892ecdb18e47fd47f208ea648ec6.zip | |
Merge tag 'pci-v6.19-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci
Pull PCI fix from Bjorn Helgaas:
- Initialize rzg3s_pcie_msi_irq() MSI status bitmap before use (Claudiu
Beznea)
* tag 'pci-v6.19-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci:
PCI: rzg3s-host: Initialize MSI status bitmap before use
| -rw-r--r-- | drivers/pci/controller/pcie-rzg3s-host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/pcie-rzg3s-host.c b/drivers/pci/controller/pcie-rzg3s-host.c index 667e6d629474..83ec66a70823 100644 --- a/drivers/pci/controller/pcie-rzg3s-host.c +++ b/drivers/pci/controller/pcie-rzg3s-host.c @@ -479,7 +479,7 @@ static void rzg3s_pcie_intx_irq_handler(struct irq_desc *desc) static irqreturn_t rzg3s_pcie_msi_irq(int irq, void *data) { u8 regs = RZG3S_PCI_MSI_INT_NR / RZG3S_PCI_MSI_INT_PER_REG; - DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR); + DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR) = {0}; struct rzg3s_pcie_host *host = data; struct rzg3s_pcie_msi *msi = &host->msi; unsigned long bit; |
