debuggers.hg
changeset 21823:a63e4c2d9ae4
x86: fix a benign typo
Just to avoid confusing readers - no functional change.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
Just to avoid confusing readers - no functional change.
Signed-off-by: Jan Beulich <jbeulich@novell.com>
author | Keir Fraser <keir.fraser@citrix.com> |
---|---|
date | Mon Jul 12 10:43:10 2010 +0100 (2010-07-12) |
parents | 9fbcd7c2b396 |
children | 421f6c63b220 |
files | xen/arch/x86/msi.c |
line diff
1.1 --- a/xen/arch/x86/msi.c Mon Jul 12 10:41:48 2010 +0100 1.2 +++ b/xen/arch/x86/msi.c Mon Jul 12 10:43:10 2010 +0100 1.3 @@ -676,7 +676,7 @@ static int __pci_enable_msix(struct msi_ 1.4 return -ENODEV; 1.5 1.6 pos = pci_find_cap_offset(msi->bus, slot, func, PCI_CAP_ID_MSIX); 1.7 - control = pci_conf_read16(msi->bus, slot, func, msi_control_reg(pos)); 1.8 + control = pci_conf_read16(msi->bus, slot, func, msix_control_reg(pos)); 1.9 nr_entries = multi_msix_capable(control); 1.10 if (msi->entry_nr >= nr_entries) 1.11 return -EINVAL;