diff options
author | Jiang Liu <jiang.liu@linux.intel.com> | 2014-11-09 10:10:34 -0500 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2014-11-23 07:01:45 -0500 |
commit | 83a18912b0e8d275001bca6fc9c0fe519d98f280 (patch) | |
tree | d63c40c62eb6964f84a2200a8ed9710772032b19 /arch/x86/pci | |
parent | 891d4a48f7da39de2be17a59b47df62dccf0f3d5 (diff) |
PCI/MSI: Rename write_msi_msg() to pci_write_msi_msg()
Rename write_msi_msg() to pci_write_msi_msg() to mark it as PCI
specific.
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 'arch/x86/pci')
-rw-r--r-- | arch/x86/pci/xen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c index ff0068b8ce5e..1819a91bbb9f 100644 --- a/arch/x86/pci/xen.c +++ b/arch/x86/pci/xen.c | |||
@@ -240,7 +240,7 @@ static int xen_hvm_setup_msi_irqs(struct pci_dev *dev, int nvec, int type) | |||
240 | goto error; | 240 | goto error; |
241 | } | 241 | } |
242 | xen_msi_compose_msg(dev, pirq, &msg); | 242 | xen_msi_compose_msg(dev, pirq, &msg); |
243 | __write_msi_msg(msidesc, &msg); | 243 | __pci_write_msi_msg(msidesc, &msg); |
244 | dev_dbg(&dev->dev, "xen: msi bound to pirq=%d\n", pirq); | 244 | dev_dbg(&dev->dev, "xen: msi bound to pirq=%d\n", pirq); |
245 | } else { | 245 | } else { |
246 | dev_dbg(&dev->dev, | 246 | dev_dbg(&dev->dev, |