1
0
Fork 0

PCI/AER: Print completion message at KERN_INFO to match starting message

The completion message in do_recovery() is currently KERN_DEBUG,
while the starting message in aer_print_port_info() is KERN_INFO.
This changes the completion message to KERN_INFO to match the
starting message.

[bhelgaas: changelog, use dev_info() instead of dev_printk(KERN_INFO)]
Signed-off-by: Lance Ortiz <lance.ortiz@hp.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
hifive-unleashed-5.1
Lance Ortiz 2012-08-24 14:44:05 -06:00 committed by Bjorn Helgaas
parent ceaf5b5f03
commit be5ac3d3c1
1 changed files with 2 additions and 4 deletions

View File

@ -540,14 +540,12 @@ static void do_recovery(struct pci_dev *dev, int severity)
"resume",
report_resume);
dev_printk(KERN_DEBUG, &dev->dev,
"AER driver successfully recovered\n");
dev_info(&dev->dev, "AER: Device recovery successful\n");
return;
failed:
/* TODO: Should kernel panic here? */
dev_printk(KERN_DEBUG, &dev->dev,
"AER driver didn't recover\n");
dev_info(&dev->dev, "AER: Device recovery failed\n");
}
/**