diff options
Diffstat (limited to 'sys/i386/isa/if_le.c')
-rw-r--r-- | sys/i386/isa/if_le.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/i386/isa/if_le.c b/sys/i386/isa/if_le.c index fb9492f384290..f6b89edf411f5 100644 --- a/sys/i386/isa/if_le.c +++ b/sys/i386/isa/if_le.c @@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_le.c,v 1.48 1998/10/22 05:58:39 bde Exp $ + * $Id: if_le.c,v 1.46 1998/07/15 09:38:09 bde Exp $ */ /* @@ -236,7 +236,6 @@ struct le_softc { static int le_probe(struct isa_device *dvp); static int le_attach(struct isa_device *dvp); -static ointhand2_t le_intr; static int le_ioctl(struct ifnet *ifp, u_long command, caddr_t data); static void le_input(le_softc_t *sc, caddr_t seg1, size_t total_len, size_t len2, caddr_t seg2); @@ -355,7 +354,6 @@ le_attach( le_softc_t *sc = &le_softc[dvp->id_unit]; struct ifnet *ifp = &sc->le_if; - dvp->id_ointr = le_intr; ifp->if_softc = sc; ifp->if_mtu = ETHERMTU; printf("%s%d: %s ethernet address %6D\n", @@ -380,7 +378,7 @@ le_attach( return 1; } -static void +void le_intr( int unit) { @@ -1126,7 +1124,7 @@ lemac_start( /* * The first four bytes of each transmit buffer are for * control information. The first byte is the control - * byte, then the length (why not word aligned?), then + * byte, then the length (why not word aligned??), then * the off to the buffer. */ |