Skip to content

Commit 41572e2

Browse files
committed
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
2 parents db9c438 + 94bf748 commit 41572e2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/pci/controller/pcie-rzg3s-host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ static void rzg3s_pcie_intx_irq_handler(struct irq_desc *desc)
479479
static irqreturn_t rzg3s_pcie_msi_irq(int irq, void *data)
480480
{
481481
u8 regs = RZG3S_PCI_MSI_INT_NR / RZG3S_PCI_MSI_INT_PER_REG;
482-
DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR);
482+
DECLARE_BITMAP(bitmap, RZG3S_PCI_MSI_INT_NR) = {0};
483483
struct rzg3s_pcie_host *host = data;
484484
struct rzg3s_pcie_msi *msi = &host->msi;
485485
unsigned long bit;

0 commit comments

Comments
 (0)