diff options
author | imp <imp@FreeBSD.org> | 1999-05-05 06:45:10 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1999-05-05 06:45:10 +0000 |
commit | 297f05ae422347ed134751a11f831ba5e4e77f58 (patch) | |
tree | fbe2dfc20a9047400fffe9c3cb954415385e62cb /sys/dev/buslogic | |
parent | bc16aa792fd404aa1b15834552f6d90276eb786c (diff) | |
download | FreeBSD-src-297f05ae422347ed134751a11f831ba5e4e77f58.zip FreeBSD-src-297f05ae422347ed134751a11f831ba5e4e77f58.tar.gz |
Remove bt_softcs. It is no longer used.
Diffstat (limited to 'sys/dev/buslogic')
-rw-r--r-- | sys/dev/buslogic/bt.c | 4 | ||||
-rw-r--r-- | sys/dev/buslogic/btreg.h | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/sys/dev/buslogic/bt.c b/sys/dev/buslogic/bt.c index ee9bd45..343ad91 100644 --- a/sys/dev/buslogic/bt.c +++ b/sys/dev/buslogic/bt.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: bt.c,v 1.17 1999/04/18 19:03:50 peter Exp $ + * $Id: bt.c,v 1.18 1999/04/23 23:28:19 gibbs Exp $ */ /* @@ -80,8 +80,6 @@ #define MAX(a, b) ((a) > (b) ? (a) : (b)) #endif -struct bt_softc *bt_softcs[NBT]; - /* MailBox Management functions */ static __inline void btnextinbox(struct bt_softc *bt); static __inline void btnextoutbox(struct bt_softc *bt); diff --git a/sys/dev/buslogic/btreg.h b/sys/dev/buslogic/btreg.h index 9567f54..00660e0 100644 --- a/sys/dev/buslogic/btreg.h +++ b/sys/dev/buslogic/btreg.h @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: btreg.h,v 1.6 1999/04/18 15:50:33 peter Exp $ + * $Id: btreg.h,v 1.7 1999/04/23 23:28:20 gibbs Exp $ */ #ifndef _BTREG_H_ @@ -664,7 +664,6 @@ struct bt_softc { char model[5]; }; -extern struct bt_softc *bt_softcs[]; /* XXX Config should handle this */ extern u_long bt_unit; #define BT_TEMP_UNIT 0xFF /* Unit for probes */ |