[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [xen master] x86/msi: Fold pci_conf_write16() calls in write_msi_msg()
commit af3c913f03b5f9eab15b168ef87cde80f9addc6e Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Tue Sep 22 20:05:22 2020 +0100 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Thu Sep 24 21:02:35 2020 +0100 x86/msi: Fold pci_conf_write16() calls in write_msi_msg() In addition, this removes the unqualified 0/1 passed to msi_data_reg() No functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/msi.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/msi.c b/xen/arch/x86/msi.c index a899c43e8d..5febc0ea4b 100644 --- a/xen/arch/x86/msi.c +++ b/xen/arch/x86/msi.c @@ -214,13 +214,10 @@ static int write_msi_msg(struct msi_desc *entry, struct msi_msg *msg) pci_conf_write32(dev->sbdf, msi_lower_address_reg(pos), msg->address_lo); if ( entry->msi_attrib.is_64 ) - { pci_conf_write32(dev->sbdf, msi_upper_address_reg(pos), msg->address_hi); - pci_conf_write16(dev->sbdf, msi_data_reg(pos, 1), msg->data); - } - else - pci_conf_write16(dev->sbdf, msi_data_reg(pos, 0), msg->data); + pci_conf_write16(dev->sbdf, msi_data_reg(pos, entry->msi_attrib.is_64), + msg->data); break; } case PCI_CAP_ID_MSIX: -- generated by git-patchbot for /home/xen/git/xen.git#master
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |