PCI/MSI: Rename mask/unmask_msi_irq treewide
The PCI/MSI irq chip callbacks mask/unmask_msi_irq have been renamed to pci_msi_mask/unmask_irq to mark them PCI specific. Rename all usage sites. The conversion helper functions are kept around to avoid conflicts in next and will be removed after merging into mainline. Coccinelle assisted conversion. No functional change. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Russell King <linux@arm.linux.org.uk> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Heiko Carstens <heiko.carstens@de.ibm.com> Cc: "David S. Miller" <davem@davemloft.net> Cc: Chris Metcalf <cmetcalf@tilera.com> Cc: x86@kernel.org Cc: Jiang Liu <jiang.liu@linux.intel.com> Cc: Jason Cooper <jason@lakedaemon.net> Cc: Murali Karicheri <m-karicheri2@ti.com> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Mohit Kumar <mohit.kumar@st.com> Cc: Simon Horman <horms@verge.net.au> Cc: Michal Simek <michal.simek@xilinx.com> Cc: Yijing Wang <wangyijing@huawei.com>
Tento commit je obsažen v:
@@ -217,7 +217,7 @@ static void xlp_msix_mask_ack(struct irq_data *d)
|
||||
|
||||
msixvec = nlm_irq_msixvec(d->irq);
|
||||
link = nlm_irq_msixlink(msixvec);
|
||||
mask_msi_irq(d);
|
||||
pci_msi_mask_irq(d);
|
||||
md = irq_data_get_irq_handler_data(d);
|
||||
|
||||
/* Ack MSI on bridge */
|
||||
@@ -239,10 +239,10 @@ static void xlp_msix_mask_ack(struct irq_data *d)
|
||||
|
||||
static struct irq_chip xlp_msix_chip = {
|
||||
.name = "XLP-MSIX",
|
||||
.irq_enable = unmask_msi_irq,
|
||||
.irq_disable = mask_msi_irq,
|
||||
.irq_enable = pci_msi_unmask_irq,
|
||||
.irq_disable = pci_msi_mask_irq,
|
||||
.irq_mask_ack = xlp_msix_mask_ack,
|
||||
.irq_unmask = unmask_msi_irq,
|
||||
.irq_unmask = pci_msi_unmask_irq,
|
||||
};
|
||||
|
||||
void arch_teardown_msi_irq(unsigned int irq)
|
||||
|
Odkázat v novém úkolu
Zablokovat Uživatele