Got Kent Palmkvist's ST01/02, FD 950 driver working for FreeBSD.
authorSean Vickery <seanv@@cs.uq.edu.au>
Mon, 13 Jun 1994 02:49:12 +0000 (02:49 +0000)
committerSean Vickery <seanv@@cs.uq.edu.au>
Mon, 13 Jun 1994 02:49:12 +0000 (02:49 +0000)
Things done:
- Added $Id$ lines to README.seagate and seagate.c
- Fixed typos in seagate.c isa_driver structure initialization
- Made entries in LINT and files.i386

sys/i386/conf/LINT
sys/i386/conf/files.i386
sys/i386/doc/README.seagate
sys/i386/isa/seagate.c

index 6e2a984..2f31469 100644 (file)
@@ -4,7 +4,7 @@
 #
 #      This kernel is NOT MEANT to be runnable!
 #
 #
 #      This kernel is NOT MEANT to be runnable!
 #
-#      $Id: LINT,v 1.76 1994/06/05 19:57:28 ats Exp $
+#      $Id: LINT,v 1.77 1994/06/08 00:30:33 phk Exp $
 #
 
 machine                "i386"
 #
 
 machine                "i386"
@@ -123,6 +123,8 @@ controller  ahb0    at isa? bio irq 11 vector ahbintr
 controller     bt0     at isa? port "IO_BT0" bio irq 12 vector btintr
 # driver for the Seagate ST01/ST02 card, not yet finished.
 #controller    sg0     at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector sgintr
 controller     bt0     at isa? port "IO_BT0" bio irq 12 vector btintr
 # driver for the Seagate ST01/ST02 card, not yet finished.
 #controller    sg0     at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector sgintr
+# driver for the Seagate ST01/ST02 or Future Domain 950 card, works
+controller     sea0    at isa? bio irq 5 iomem 0xc8000 iosiz 0x2000 vector seaintr
 controller     fdc0    at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
 disk           fd0     at fdc0 drive 0
 disk           fd1     at fdc0 drive 1
 controller     fdc0    at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr
 disk           fd0     at fdc0 drive 0
 disk           fd1     at fdc0 drive 1
index 1f9adda..c420e86 100644 (file)
@@ -1,7 +1,7 @@
 # This file tells config what files go into building a kernel,
 # files marked standard are always included.
 #
 # This file tells config what files go into building a kernel,
 # files marked standard are always included.
 #
-#      $Id: files.i386,v 1.36 1994/05/14 10:45:57 csgr Exp $
+#      $Id: files.i386,v 1.37 1994/05/17 22:30:42 jkh Exp $
 #
 i386/i386/autoconf.c           standard                device-driver
 i386/i386/cons.c               standard
 #
 i386/i386/autoconf.c           standard                device-driver
 i386/i386/cons.c               standard
@@ -42,6 +42,7 @@ i386/isa/pcaudio.c            optional        pca     device-driver
 i386/isa/psm.c                 optional        psm     device-driver
 i386/isa/sb.c                  optional        sb      device-driver
 i386/isa/scd.c                 optional        scd     device-driver
 i386/isa/psm.c                 optional        psm     device-driver
 i386/isa/sb.c                  optional        sb      device-driver
 i386/isa/scd.c                 optional        scd     device-driver
+i386/isa/seagate.c             optional        sea     device-driver
 i386/isa/sg.c                  optional        sg      device-driver
 i386/isa/sio.c                 optional        sio     device-driver
 i386/isa/sound/adlib_card.c    optional        snd     device-driver
 i386/isa/sg.c                  optional        sg      device-driver
 i386/isa/sio.c                 optional        sio     device-driver
 i386/isa/sound/adlib_card.c    optional        snd     device-driver
index 272d155..bac2b26 100644 (file)
@@ -124,3 +124,4 @@ Kent Palmkvist
 kentp@isy.liu.se
 
 
 kentp@isy.liu.se
 
 
+$Id$
index e86f628..89bf8fd 100644 (file)
@@ -41,6 +41,7 @@
  * rknier 940331 Added fast transfer code 
  * rknier 940407 Added assembler coded data transfers 
  *
  * rknier 940331 Added fast transfer code 
  * rknier 940407 Added assembler coded data transfers 
  *
+ * $Id: seagate.c,v 1.2 1994/06/13 00:43:26 sean Exp $
  */
 
 /*
  */
 
 /*
@@ -380,8 +381,8 @@ struct scsi_device sea_dev =
 
 struct isa_driver seadriver =
 {
 
 struct isa_driver seadriver =
 {
-       seaprobe,
-       seaattach,
+       sea_probe,
+       sea_attach,
        "sea"
 };
 
        "sea"
 };