Skip to content

Commit

Permalink
[SCSI] fix up message/i2o/pci.c
Browse files Browse the repository at this point in the history
There was a use before initialisation of c->name

Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
  • Loading branch information
James Bottomley committed Jan 14, 2006
1 parent 1ca00bb commit f20139b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/message/i2o/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ static int __devinit i2o_pci_probe(struct pci_dev *pdev,
}

if (pci_request_regions(pdev, OSM_DESCRIPTION)) {
printk(KERN_ERR "i2o: device already claimed\n", c->name);
printk(KERN_ERR "i2o: device already claimed\n");
return -ENODEV;
}

Expand Down

0 comments on commit f20139b

Please sign in to comment.