diff options
Diffstat (limited to 'sys/dev/isa/if_hp.c')
-rw-r--r-- | sys/dev/isa/if_hp.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/isa/if_hp.c b/sys/dev/isa/if_hp.c index 5e05b2296a8..3196f3c162d 100644 --- a/sys/dev/isa/if_hp.c +++ b/sys/dev/isa/if_hp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_hp.c,v 1.12 2004/06/13 21:49:24 niklas Exp $ */ +/* $OpenBSD: if_hp.c,v 1.13 2004/09/23 17:45:16 brad Exp $ */ /* $NetBSD: if_hp.c,v 1.21 1995/12/24 02:31:31 mycroft Exp $ */ /* XXX THIS DRIVER IS BROKEN. IT WILL NOT EVEN COMPILE. */ @@ -87,7 +87,7 @@ #include <dev/isa/if_nereg.h> int hpprobe(), hpattach(), hpintr(); -int hpstart(), hpinit(), ether_output(), hpioctl(); +int hpstart(), hpinit(), hpioctl(); struct isa_driver hpdriver = { @@ -394,12 +394,10 @@ hpattach(dvp) ifp->if_unit = unit; ifp->if_name = hpdriver.name; - ifp->if_mtu = ETHERMTU; printf("hp%d: %s %d-bit ethernet address %s\n", unit, hp_id(ns->hp_type), ns->ns_mode & DSDC_WTS ? 32 : 16, ether_sprintf(ns->ns_addrp)); ifp->if_flags = IFF_BROADCAST | IFF_SIMPLEX | IFF_NOTRAILERS; - ifp->if_output = ether_output; ifp->if_start = hpstart; ifp->if_ioctl = hpioctl; ifp->if_reset = hpreset; |