1
0
Fork 0

PCI: fix -Wakpm warnings in pci_pm_init debug output

Checkpatch would have complained about this but neither Bjorn nor myself
ran it prior to pushing.  Fixup the issues Andrew pointed out.

Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
hifive-unleashed-5.1
Jesse Barnes 2008-09-23 11:43:34 -07:00
parent cef354db0d
commit ec84f1268f
1 changed files with 2 additions and 2 deletions

View File

@ -1270,8 +1270,8 @@ void pci_pm_init(struct pci_dev *dev)
if (dev->d1_support || dev->d2_support)
dev_printk(KERN_DEBUG, &dev->dev, "supports%s%s\n",
dev->d1_support ? " D1": "",
dev->d2_support ? " D2": "");
dev->d1_support ? " D1" : "",
dev->d2_support ? " D2" : "");
}
pmc &= PCI_PM_CAP_PME_MASK;