diff options
author | <hch@lst.de> | 2005-04-03 15:53:59 -0400 |
---|---|---|
committer | James Bottomley <jejb@titanic> | 2005-04-18 13:32:20 -0400 |
commit | db9dff366ba78085d0323364fadbf09bec0e77ee (patch) | |
tree | ae86a60cf83c3d897f9488e90fca4b36cd545a1a /drivers/scsi/seagate.c | |
parent | b6651129cc27d56a9cbefcb5f713cea7706fd6b7 (diff) |
[PATCH] remove outdated print_* functions
We have the scsi_print_* functions in the proper namespace for a long
time now and there weren't a lot users left.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/seagate.c')
-rw-r--r-- | drivers/scsi/seagate.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/seagate.c b/drivers/scsi/seagate.c index b362ff2811da..4c95abb54057 100644 --- a/drivers/scsi/seagate.c +++ b/drivers/scsi/seagate.c | |||
@@ -103,6 +103,7 @@ | |||
103 | #include <asm/uaccess.h> | 103 | #include <asm/uaccess.h> |
104 | 104 | ||
105 | #include "scsi.h" | 105 | #include "scsi.h" |
106 | #include <scsi/scsi_dbg.h> | ||
106 | #include <scsi/scsi_host.h> | 107 | #include <scsi/scsi_host.h> |
107 | #include "seagate.h" | 108 | #include "seagate.h" |
108 | 109 | ||
@@ -746,7 +747,7 @@ static int internal_command (unsigned char target, unsigned char lun, | |||
746 | 747 | ||
747 | #if (DEBUG & PRINT_COMMAND) | 748 | #if (DEBUG & PRINT_COMMAND) |
748 | printk("scsi%d : target = %d, command = ", hostno, target); | 749 | printk("scsi%d : target = %d, command = ", hostno, target); |
749 | print_command((unsigned char *) cmnd); | 750 | __scsi_print_command((unsigned char *) cmnd); |
750 | #endif | 751 | #endif |
751 | 752 | ||
752 | #if (DEBUG & PHASE_RESELECT) | 753 | #if (DEBUG & PHASE_RESELECT) |
@@ -1553,7 +1554,7 @@ connect_loop: | |||
1553 | printk("\n"); | 1554 | printk("\n"); |
1554 | #endif | 1555 | #endif |
1555 | printk("scsi%d : status = ", hostno); | 1556 | printk("scsi%d : status = ", hostno); |
1556 | print_status(status); | 1557 | scsi_print_status(status); |
1557 | printk(" message = %02x\n", message); | 1558 | printk(" message = %02x\n", message); |
1558 | #endif | 1559 | #endif |
1559 | 1560 | ||