diff options
author | gpalmer <gpalmer@FreeBSD.org> | 1996-06-12 05:11:41 +0000 |
---|---|---|
committer | gpalmer <gpalmer@FreeBSD.org> | 1996-06-12 05:11:41 +0000 |
commit | 57c3ebc617f6ed31240847c6fce74931a372824c (patch) | |
tree | c727af841ff654969571e10a8dc92e2a987cd0c2 /sys/scsi/od.c | |
parent | d356aa8b627cecbc5a3a5e98327366686498962d (diff) | |
download | FreeBSD-src-57c3ebc617f6ed31240847c6fce74931a372824c.zip FreeBSD-src-57c3ebc617f6ed31240847c6fce74931a372824c.tar.gz |
Clean up -Wunused warnings.
Reviewed by: bde
Diffstat (limited to 'sys/scsi/od.c')
-rw-r--r-- | sys/scsi/od.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/od.c b/sys/scsi/od.c index 4086af0..ec39429 100644 --- a/sys/scsi/od.c +++ b/sys/scsi/od.c @@ -28,7 +28,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * - * $Id: od.c,v 1.15.1.3 1996/05/06 15:14:57 shun Exp $ + * $Id: od.c,v 1.16 1996/05/19 19:26:21 joerg Exp $ */ /* @@ -113,7 +113,9 @@ struct scsi_data { static void od_get_geometry __P((u_int32_t, u_int16_t *, u_char *, u_char *)); static errval od_get_parms __P((int unit, int flags)); +#ifdef notyet static errval od_reassign_blocks __P((int unit, int block)); +#endif static u_int32_t od_size __P((int unit, int flags)); static int od_sense_handler __P((struct scsi_xfer *)); static void odstart __P((u_int32_t, u_int32_t)); |