PCI/AER: Log errors with PCI device, not PCIe service device
All other AER-related log messages use the PCI device, e.g., "pci 0000:00:1c.0", not the PCIe service device, e.g., "aer 0000:00:1c.0:pcie02". Change the probe error messages to match the rest and include a little context. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
2298a7aaa8
commit
576700b67a
@ -290,12 +290,12 @@ static int aer_probe(struct pcie_device *dev)
|
|||||||
{
|
{
|
||||||
int status;
|
int status;
|
||||||
struct aer_rpc *rpc;
|
struct aer_rpc *rpc;
|
||||||
struct device *device = &dev->device;
|
struct device *device = &dev->port->dev;
|
||||||
|
|
||||||
/* Alloc rpc data structure */
|
/* Alloc rpc data structure */
|
||||||
rpc = aer_alloc_rpc(dev);
|
rpc = aer_alloc_rpc(dev);
|
||||||
if (!rpc) {
|
if (!rpc) {
|
||||||
dev_printk(KERN_DEBUG, device, "alloc rpc failed\n");
|
dev_printk(KERN_DEBUG, device, "alloc AER rpc failed\n");
|
||||||
aer_remove(dev);
|
aer_remove(dev);
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
}
|
||||||
@ -303,7 +303,8 @@ static int aer_probe(struct pcie_device *dev)
|
|||||||
/* Request IRQ ISR */
|
/* Request IRQ ISR */
|
||||||
status = request_irq(dev->irq, aer_irq, IRQF_SHARED, "aerdrv", dev);
|
status = request_irq(dev->irq, aer_irq, IRQF_SHARED, "aerdrv", dev);
|
||||||
if (status) {
|
if (status) {
|
||||||
dev_printk(KERN_DEBUG, device, "request IRQ failed\n");
|
dev_printk(KERN_DEBUG, device, "request AER IRQ %d failed\n",
|
||||||
|
dev->irq);
|
||||||
aer_remove(dev);
|
aer_remove(dev);
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user