diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-01-03 18:09:36 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-09 17:39:30 -0500 |
commit | 7102d230d6e8cf48ab366fa110c0a7f5ea160d07 (patch) | |
tree | 6771763556f65654abae30c18e9092285ff7044b /drivers/ata/libata-core.c | |
parent | 904dbd1307100edc12e2f98dd12b2338f1914f5b (diff) |
drivers/ata/: make 4 functions static
This patch makes the following needlessly global functions static:
- libata-core.c: ata_qc_complete_internal()
- libata-scsi.c: ata_scsi_qc_new()
- libata-scsi.c: ata_dump_status()
- libata-scsi.c: ata_to_sense_error()
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/libata-core.c')
-rw-r--r-- | drivers/ata/libata-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index e267319bb2b1..2869469790b0 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c | |||
@@ -1156,7 +1156,7 @@ void ata_port_flush_task(struct ata_port *ap) | |||
1156 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__); | 1156 | ata_port_printk(ap, KERN_DEBUG, "%s: EXIT\n", __FUNCTION__); |
1157 | } | 1157 | } |
1158 | 1158 | ||
1159 | void ata_qc_complete_internal(struct ata_queued_cmd *qc) | 1159 | static void ata_qc_complete_internal(struct ata_queued_cmd *qc) |
1160 | { | 1160 | { |
1161 | struct completion *waiting = qc->private_data; | 1161 | struct completion *waiting = qc->private_data; |
1162 | 1162 | ||