Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'pci/controller/hv'

- Remove unused hv_msi_free() parameter (Nam Cao)

* pci/controller/hv:
PCI: hv: Remove unused parameter of hv_msi_free()

+2 -6
+2 -6
drivers/pci/controller/pci-hyperv.c
··· 1680 1680 /** 1681 1681 * hv_msi_free() - Free the MSI. 1682 1682 * @domain: The interrupt domain pointer 1683 - * @info: Extra MSI-related context 1684 1683 * @irq: Identifies the IRQ. 1685 1684 * 1686 1685 * The Hyper-V parent partition and hypervisor are tracking the ··· 1687 1688 * table up to date. This callback sends a message that frees 1688 1689 * the IRT entry and related tracking nonsense. 1689 1690 */ 1690 - static void hv_msi_free(struct irq_domain *domain, struct msi_domain_info *info, 1691 - unsigned int irq) 1691 + static void hv_msi_free(struct irq_domain *domain, unsigned int irq) 1692 1692 { 1693 1693 struct hv_pcibus_device *hbus; 1694 1694 struct hv_pci_dev *hpdev; ··· 2179 2181 2180 2182 static void hv_pcie_domain_free(struct irq_domain *d, unsigned int virq, unsigned int nr_irqs) 2181 2183 { 2182 - struct msi_domain_info *info = d->host_data; 2183 - 2184 2184 for (int i = 0; i < nr_irqs; i++) 2185 - hv_msi_free(d, info, virq + i); 2185 + hv_msi_free(d, virq + i); 2186 2186 2187 2187 irq_domain_free_irqs_top(d, virq, nr_irqs); 2188 2188 }