pci: Fix typo in message while disabling HT MSI mapping
authorPrakash Punnoor <prakash@punnoor.de>
Fri, 6 Mar 2009 09:10:35 +0000 (10:10 +0100)
committerMatthew Wilcox <willy@linux.intel.com>
Thu, 12 Mar 2009 19:42:29 +0000 (15:42 -0400)
"Enabling" should read "Disabling"

Signed-off-by: Prakash Punnoor <prakash@punnoor.de>
Signed-off-by: Matthew Wilcox <willy@linux.intel.com>
drivers/pci/quirks.c

index 9104671..92b9efe 100644 (file)
@@ -2122,7 +2122,7 @@ static void __devinit ht_disable_msi_mapping(struct pci_dev *dev)
 
                if (pci_read_config_byte(dev, pos + HT_MSI_FLAGS,
                                         &flags) == 0) {
-                       dev_info(&dev->dev, "Enabling HT MSI Mapping\n");
+                       dev_info(&dev->dev, "Disabling HT MSI Mapping\n");
 
                        pci_write_config_byte(dev, pos + HT_MSI_FLAGS,
                                              flags & ~HT_MSI_FLAGS_ENABLE);