GC unused stuff.

This commit is contained in:
augustss 2001-12-02 20:06:00 +00:00
parent 4ab3d5a0bc
commit 1187860bcf
2 changed files with 2 additions and 15 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: irframe.c,v 1.2 2001/12/02 16:29:25 augustss Exp $ */
/* $NetBSD: irframe.c,v 1.3 2001/12/02 20:06:00 augustss Exp $ */
/*
* Copyright (c) 2001 The NetBSD Foundation, Inc.
@ -276,18 +276,6 @@ irframepoll(dev_t dev, int events, struct proc *p)
return (0);
}
void
irframe_frame_available(struct device *dev)
{
struct irframe_softc *sc = (struct irframe_softc *)dev;
int s;
s = splir();
sc->sc_rdframes++;
selwakeup(&sc->sc_rdsel);
splx(s);
}
/*********/

View File

@ -1,4 +1,4 @@
/* $NetBSD: irframevar.h,v 1.2 2001/12/02 16:29:26 augustss Exp $ */
/* $NetBSD: irframevar.h,v 1.3 2001/12/02 20:06:00 augustss Exp $ */
/*
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -53,7 +53,6 @@ struct irframe_softc {
struct irframe_methods *sc_methods;
void *sc_handle;
char sc_open;
u_int sc_rdframes;
struct selinfo sc_rdsel;
};