diff options
author | Christoph Hellwig <hch@lst.de> | 2005-09-06 08:15:37 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-09-06 18:26:37 -0400 |
commit | fe1b2d544d71300f8e2d151c3c77a130d13a58be (patch) | |
tree | 770c8c9e857bb4d0bf7c96d831e35f91f2e11f9e /drivers | |
parent | c5478def7a3a2dba9ceda452c2aa3539514d30a9 (diff) |
[SCSI] unexport scsi_add_timer/scsi_delete_timer
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/scsi/scsi_error.c | 2 | ||||
-rw-r--r-- | drivers/scsi/scsi_priv.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c index ebe74ccb518a..ae28bcb79242 100644 --- a/drivers/scsi/scsi_error.c +++ b/drivers/scsi/scsi_error.c | |||
@@ -116,7 +116,6 @@ void scsi_add_timer(struct scsi_cmnd *scmd, int timeout, | |||
116 | 116 | ||
117 | add_timer(&scmd->eh_timeout); | 117 | add_timer(&scmd->eh_timeout); |
118 | } | 118 | } |
119 | EXPORT_SYMBOL(scsi_add_timer); | ||
120 | 119 | ||
121 | /** | 120 | /** |
122 | * scsi_delete_timer - Delete/cancel timer for a given function. | 121 | * scsi_delete_timer - Delete/cancel timer for a given function. |
@@ -144,7 +143,6 @@ int scsi_delete_timer(struct scsi_cmnd *scmd) | |||
144 | 143 | ||
145 | return rtn; | 144 | return rtn; |
146 | } | 145 | } |
147 | EXPORT_SYMBOL(scsi_delete_timer); | ||
148 | 146 | ||
149 | /** | 147 | /** |
150 | * scsi_times_out - Timeout function for normal scsi commands. | 148 | * scsi_times_out - Timeout function for normal scsi commands. |
diff --git a/drivers/scsi/scsi_priv.h b/drivers/scsi/scsi_priv.h index d30d7f4e63ec..ee6de1768e53 100644 --- a/drivers/scsi/scsi_priv.h +++ b/drivers/scsi/scsi_priv.h | |||
@@ -63,6 +63,9 @@ extern int __init scsi_init_devinfo(void); | |||
63 | extern void scsi_exit_devinfo(void); | 63 | extern void scsi_exit_devinfo(void); |
64 | 64 | ||
65 | /* scsi_error.c */ | 65 | /* scsi_error.c */ |
66 | extern void scsi_add_timer(struct scsi_cmnd *, int, | ||
67 | void (*)(struct scsi_cmnd *)); | ||
68 | extern int scsi_delete_timer(struct scsi_cmnd *); | ||
66 | extern void scsi_times_out(struct scsi_cmnd *cmd); | 69 | extern void scsi_times_out(struct scsi_cmnd *cmd); |
67 | extern int scsi_error_handler(void *host); | 70 | extern int scsi_error_handler(void *host); |
68 | extern int scsi_decide_disposition(struct scsi_cmnd *cmd); | 71 | extern int scsi_decide_disposition(struct scsi_cmnd *cmd); |