diff options
Diffstat (limited to 'sys/i386/isa/asc.c')
-rw-r--r-- | sys/i386/isa/asc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/sys/i386/isa/asc.c b/sys/i386/isa/asc.c index 1a801b08fa69f..fe8dba69d73e4 100644 --- a/sys/i386/isa/asc.c +++ b/sys/i386/isa/asc.c @@ -34,7 +34,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* - * $Id: asc.c,v 1.31 1998/08/12 18:16:38 bde Exp $ + * $Id: asc.c,v 1.30 1998/06/07 17:10:13 dfr Exp $ */ #include "asc.h" @@ -188,8 +188,6 @@ static int ascprobe (struct isa_device *isdp); static int ascattach(struct isa_device *isdp); struct isa_driver ascdriver = { ascprobe, ascattach, "asc" }; -static ointhand2_t ascintr; - static d_open_t ascopen; static d_close_t ascclose; static d_read_t ascread; @@ -450,7 +448,6 @@ ascattach(struct isa_device *isdp) int unit = isdp->id_unit; struct asc_unit *scu = unittab + unit; - isdp->id_ointr = ascintr; scu->flags |= FLAG_DEBUG; printf("asc%d: [GI1904/Trust Ami-Scan Grey/Color]\n", unit); @@ -500,7 +497,7 @@ ascattach(struct isa_device *isdp) *** ascintr *** the interrupt routine, at the end of DMA... ***/ -static void +void ascintr(int unit) { struct asc_unit *scu = unittab + unit; |