All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix Trivial Warnining in drivers/ata/libata-scsi.c
@ 2009-04-27 10:31 Subrata Modak
  2009-04-27 12:03 ` Jeff Garzik
  0 siblings, 1 reply; 3+ messages in thread
From: Subrata Modak @ 2009-04-27 10:31 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Sachin P Sant, linux-ide, Subrata Modak, Balbir Singh

Hi Jeff,

I observed the following warning for drivers/ata/libata-scsi.c:

drivers/ata/libata-scsi.c: In function ‘ata_scsi_scan_host’:
drivers/ata/libata-scsi.c:3272: warning: ‘dev’ may be used uninitialized in this function
---

In most instances=>
	struct ata_device *dev
has been initialized except the above instance. My trivial patch below fixes this.
Please include it if you like it.

To: Jeff Garzik <jgarzik@pobox.com>
Cc: linux-ide@vger.kernel.org
Cc: Balbir Singh <balbir@linux.vnet.ibm.com>
Cc: Sachin P Sant <sachinp@linux.vnet.ibm.com>
Signed-Off-By: Subrata Modak <subrata@linux.vnet.ibm.com>
---

--- a/drivers/ata/libata-scsi.c	2009-04-27 11:39:27.000000000 +0530
+++ b/drivers/ata/libata-scsi.c	2009-04-27 15:52:17.000000000 +0530
@@ -3269,7 +3269,7 @@ void ata_scsi_scan_host(struct ata_port 
 	int tries = 5;
 	struct ata_device *last_failed_dev = NULL;
 	struct ata_link *link;
-	struct ata_device *dev;
+	struct ata_device *dev = NULL;
 
 	if (ap->flags & ATA_FLAG_DISABLED)
 		return;

---
Regards--
Subrata


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-04-27 13:01 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-27 10:31 [PATCH] Fix Trivial Warnining in drivers/ata/libata-scsi.c Subrata Modak
2009-04-27 12:03 ` Jeff Garzik
2009-04-27 13:01   ` Subrata Modak

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.