aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi/sata_mv.c
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>2005-10-05 17:19:47 -0400
committerJeff Garzik <jgarzik@pobox.com>2005-10-05 17:19:47 -0400
commit8a70f8dc08dd40b7f8ac77280eaa99a8c6bc46f4 (patch)
treea581d2372074c4ddedee1888822b832f3d8c8bc7 /drivers/scsi/sata_mv.c
parent05b308e1df6d9d673daedb517969241f41278b52 (diff)
[libata sata_mv] fix warning
shuffle ifdef location to fix the following warning: drivers/scsi/sata_mv.c:471: warning: 'mv_dump_mem' defined but not used
Diffstat (limited to 'drivers/scsi/sata_mv.c')
-rw-r--r--drivers/scsi/sata_mv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/sata_mv.c b/drivers/scsi/sata_mv.c
index 84b488f81c75..d457f5673476 100644
--- a/drivers/scsi/sata_mv.c
+++ b/drivers/scsi/sata_mv.c
@@ -467,9 +467,9 @@ static void mv_stop_dma(struct ata_port *ap)
467 } 467 }
468} 468}
469 469
470#ifdef ATA_DEBUG
470static void mv_dump_mem(void __iomem *start, unsigned bytes) 471static void mv_dump_mem(void __iomem *start, unsigned bytes)
471{ 472{
472#ifdef ATA_DEBUG
473 int b, w; 473 int b, w;
474 for (b = 0; b < bytes; ) { 474 for (b = 0; b < bytes; ) {
475 DPRINTK("%p: ", start + b); 475 DPRINTK("%p: ", start + b);
@@ -479,8 +479,9 @@ static void mv_dump_mem(void __iomem *start, unsigned bytes)
479 } 479 }
480 printk("\n"); 480 printk("\n");
481 } 481 }
482#endif
483} 482}
483#endif
484
484static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes) 485static void mv_dump_pci_cfg(struct pci_dev *pdev, unsigned bytes)
485{ 486{
486#ifdef ATA_DEBUG 487#ifdef ATA_DEBUG