summaryrefslogtreecommitdiff
path: root/sys/scsi/scsiconf.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-05-18 16:06:36 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-05-18 16:06:36 +0000
commita6eac17e9d9201cd216709ab136557b78bb17c16 (patch)
tree97200fa9884b9072a8a70fc77253c4753bbd9bd1 /sys/scsi/scsiconf.h
parent0104529bd466688238c5b5bc13cc1adcf0a5a682 (diff)
constify the quirck tables and fix the scsi_inqmatch() proto accordingly; krw@ ok
Diffstat (limited to 'sys/scsi/scsiconf.h')
-rw-r--r--sys/scsi/scsiconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h
index c34f2b8de00..6b8a239a841 100644
--- a/sys/scsi/scsiconf.h
+++ b/sys/scsi/scsiconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: scsiconf.h,v 1.38 2003/05/16 19:54:05 krw Exp $ */
+/* $OpenBSD: scsiconf.h,v 1.39 2003/05/18 16:06:35 mickey Exp $ */
/* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */
/*
@@ -315,7 +315,7 @@ struct scsi_xfer {
#define TEST_READY_RETRIES_DEFAULT 5
#define TEST_READY_RETRIES_CD 10
-caddr_t scsi_inqmatch(struct scsi_inquiry_data *, caddr_t, int,
+const void *scsi_inqmatch(struct scsi_inquiry_data *, const void *, int,
int, int *);
void scsi_init(void);