aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/msi.h
diff options
context:
space:
mode:
authorJiang Liu <jiang.liu@linux.intel.com>2014-11-09 10:10:33 -0500
committerThomas Gleixner <tglx@linutronix.de>2014-11-23 07:01:45 -0500
commit891d4a48f7da39de2be17a59b47df62dccf0f3d5 (patch)
tree4a02f67a8d065f8a9e271537d92df7e5edb6c98c /include/linux/msi.h
parentd71d6432e105fe80d33f930276bb146be4732330 (diff)
PCI/MSI: Rename __read_msi_msg() to __pci_read_msi_msg()
Rename __read_msi_msg() to __pci_read_msi_msg() and kill unused read_msi_msg(). It's a preparation to separate generic MSI code from PCI core. Signed-off-by: Jiang Liu <jiang.liu@linux.intel.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Grant Likely <grant.likely@linaro.org> Cc: Marc Zyngier <marc.zyngier@arm.com> Cc: Yingjoe Chen <yingjoe.chen@mediatek.com> Cc: Yijing Wang <wangyijing@huawei.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/msi.h')
-rw-r--r--include/linux/msi.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/linux/msi.h b/include/linux/msi.h
index 6704991b0174..f36c37b46f10 100644
--- a/include/linux/msi.h
+++ b/include/linux/msi.h
@@ -16,12 +16,11 @@ struct irq_data;
16struct msi_desc; 16struct msi_desc;
17void mask_msi_irq(struct irq_data *data); 17void mask_msi_irq(struct irq_data *data);
18void unmask_msi_irq(struct irq_data *data); 18void unmask_msi_irq(struct irq_data *data);
19void __read_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
20void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg); 19void __get_cached_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
21void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg); 20void __write_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
22void read_msi_msg(unsigned int irq, struct msi_msg *msg);
23void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg); 21void get_cached_msi_msg(unsigned int irq, struct msi_msg *msg);
24void write_msi_msg(unsigned int irq, struct msi_msg *msg); 22void write_msi_msg(unsigned int irq, struct msi_msg *msg);
23
25u32 __msix_mask_irq(struct msi_desc *desc, u32 flag); 24u32 __msix_mask_irq(struct msi_desc *desc, u32 flag);
26u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag); 25u32 __msi_mask_irq(struct msi_desc *desc, u32 mask, u32 flag);
27 26
@@ -51,6 +50,8 @@ struct msi_desc {
51 struct msi_msg msg; 50 struct msi_msg msg;
52}; 51};
53 52
53void __pci_read_msi_msg(struct msi_desc *entry, struct msi_msg *msg);
54
54/* 55/*
55 * The arch hooks to setup up msi irqs. Those functions are 56 * The arch hooks to setup up msi irqs. Those functions are
56 * implemented as weak symbols so that they /can/ be overriden by 57 * implemented as weak symbols so that they /can/ be overriden by