1
0
Fork 0

[SCSI] ips: warning fix

drivers/scsi/ips.c: In function 'ips_insert_device':
drivers/scsi/ips.c:6957: warning: 'index' may be used uninitialized in this function

Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
hifive-unleashed-5.1
Andrew Morton 2007-08-10 14:50:52 -07:00 committed by James Bottomley
parent ffcde188a8
commit 305aad0bf5
1 changed files with 1 additions and 1 deletions

View File

@ -6946,7 +6946,7 @@ module_exit(ips_module_exit);
static int __devinit
ips_insert_device(struct pci_dev *pci_dev, const struct pci_device_id *ent)
{
int index;
int uninitialized_var(index);
int rc;
METHOD_TRACE("ips_insert_device", 1);