aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/quirks.c
diff options
context:
space:
mode:
authorPrakash Punnoor <prakash@punnoor.de>2009-03-06 04:10:35 -0500
committerMatthew Wilcox <willy@linux.intel.com>2009-03-12 15:42:29 -0400
commit6a958d5b28e4a180458e0d319d2e4bb5c4b7da3e (patch)
treeadcd44e29bc2efd893c757b49eb1958be81bf543 /drivers/pci/quirks.c
parent7726c3308a92b4a4c3bd059059498fca0e6f8e48 (diff)
pci: Fix typo in message while disabling HT MSI mapping
"Enabling" should read "Disabling" Signed-off-by: Prakash Punnoor <prakash@punnoor.de> Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
Diffstat (limited to 'drivers/pci/quirks.c')
-rw-r--r--drivers/pci/quirks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 9104671e4b7..92b9efe9bca 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -2122,7 +2122,7 @@ static void __devinit ht_disable_msi_mapping(struct pci_dev *dev)
2122 2122
2123 if (pci_read_config_byte(dev, pos + HT_MSI_FLAGS, 2123 if (pci_read_config_byte(dev, pos + HT_MSI_FLAGS,
2124 &flags) == 0) { 2124 &flags) == 0) {
2125 dev_info(&dev->dev, "Enabling HT MSI Mapping\n"); 2125 dev_info(&dev->dev, "Disabling HT MSI Mapping\n");
2126 2126
2127 pci_write_config_byte(dev, pos + HT_MSI_FLAGS, 2127 pci_write_config_byte(dev, pos + HT_MSI_FLAGS,
2128 flags & ~HT_MSI_FLAGS_ENABLE); 2128 flags & ~HT_MSI_FLAGS_ENABLE);