public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [patch 2.6.18-rc4] Fix compile problem when sata debugging is on
@ 2006-08-08  3:51 Keith Owens
  2006-08-09  5:16 ` Jeff Garzik
  0 siblings, 1 reply; 2+ messages in thread
From: Keith Owens @ 2006-08-08  3:51 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel

Fix a sata debug print statement that still uses an old variable name.

Signed-off-by: Keith Owens <kaos@ocs.com.au>

---
 drivers/scsi/ata_piix.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Index: linux/drivers/scsi/ata_piix.c
===================================================================
--- linux.orig/drivers/scsi/ata_piix.c
+++ linux/drivers/scsi/ata_piix.c
@@ -567,8 +567,8 @@ static int piix_sata_prereset(struct ata
 			present = 1;
 	}
 
-	DPRINTK("ata%u: LEAVE, pcs=0x%x present_mask=0x%x\n",
-		ap->id, pcs, present_mask);
+	DPRINTK("ata%u: LEAVE, pcs=0x%x present=0x%x\n",
+		ap->id, pcs, present);
 
 	if (!present) {
 		ata_port_printk(ap, KERN_INFO, "SATA port has no device.\n");


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

end of thread, other threads:[~2006-08-09  5:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-08  3:51 [patch 2.6.18-rc4] Fix compile problem when sata debugging is on Keith Owens
2006-08-09  5:16 ` Jeff Garzik

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox