diff options
author | Peter Wemm <peter@FreeBSD.org> | 2001-12-18 08:05:57 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2001-12-18 08:05:57 +0000 |
commit | d4501a944951d1bffc01b48ef2674f2779bdf7ad (patch) | |
tree | f765211faae52ac69fc0f1edd8d8bea6e312e267 /sys/dev/ciss/ciss.c | |
parent | e65da5df7ba62f2492d89b00977e33f318c48b89 (diff) | |
download | src-d4501a944951d1bffc01b48ef2674f2779bdf7ad.tar.gz src-d4501a944951d1bffc01b48ef2674f2779bdf7ad.zip |
MFC: rev 1.3 (trivial): ciss_abort_request() defined but not used warning
Notes
Notes:
svn path=/stable/4/; revision=88115
Diffstat (limited to 'sys/dev/ciss/ciss.c')
-rw-r--r-- | sys/dev/ciss/ciss.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/ciss/ciss.c b/sys/dev/ciss/ciss.c index 6744c5b8bdf0..e40d60c0205c 100644 --- a/sys/dev/ciss/ciss.c +++ b/sys/dev/ciss/ciss.c @@ -134,7 +134,9 @@ static int ciss_report_request(struct ciss_request *cr, int *command_status, static int ciss_synch_request(struct ciss_request *cr, int timeout); static int ciss_poll_request(struct ciss_request *cr, int timeout); static int ciss_wait_request(struct ciss_request *cr, int timeout); +#if 0 static int ciss_abort_request(struct ciss_request *cr); +#endif /* request queueing */ static int ciss_get_request(struct ciss_softc *sc, struct ciss_request **crp); @@ -1631,6 +1633,7 @@ ciss_wait_request(struct ciss_request *cr, int timeout) return(error); } +#if 0 /************************************************************************ * Abort a request. Note that a potential exists here to race the * request being completed; the caller must deal with this. @@ -1677,6 +1680,7 @@ ciss_abort_request(struct ciss_request *ar) return(error); } +#endif /************************************************************************ |