From: Prakash Punnoor Date: Fri, 6 Mar 2009 09:10:35 +0000 (+0100) Subject: pci: Fix typo in message while disabling HT MSI mapping X-Git-Tag: 2.1b_release~13813^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6a958d5b28e4a180458e0d319d2e4bb5c4b7da3e;p=platform%2Fkernel%2Fkernel-mfld-blackbay.git pci: Fix typo in message while disabling HT MSI mapping "Enabling" should read "Disabling" Signed-off-by: Prakash Punnoor Signed-off-by: Matthew Wilcox --- diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 9104671..92b9efe 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) 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);