diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c index 8fae12310ee9..85e948d88d20 100644 --- a/sys/dev/fe/if_fe.c +++ b/sys/dev/fe/if_fe.c @@ -21,7 +21,7 @@ */ /* - * $Id: if_fe.c,v 1.40 1998/03/28 13:24:09 bde Exp $ + * $Id: if_fe.c,v 1.41 1998/06/07 17:10:31 dfr Exp $ * * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards. * To be used with FreeBSD 2.x @@ -76,11 +76,7 @@ #include "opt_ipx.h" #include -#include #include - -#include - #include #include #include @@ -124,6 +120,7 @@ /* PCCARD suport */ #include "card.h" #if NCARD > 0 +#include #include #include #include @@ -324,9 +321,9 @@ outblk ( struct fe_softc * sc, int offs, u_char const * mem, int len ) /* * PC-Card (PCMCIA) specific code. */ -static int feinit (struct pccard_devinfo *); -static void feunload (struct pccard_devinfo *); -static int fe_card_intr (struct pccard_devinfo *); +static int feinit ( struct pccard_devinfo * ); +static void feunload ( struct pccard_devinfo * ); +static int fe_card_intr ( struct pccard_devinfo * ); static struct pccard_device fe_info = { "fe", @@ -334,8 +331,7 @@ static struct pccard_device fe_info = { feunload, fe_card_intr, 0, /* Attributes - presently unused */ - &net_imask /* Interrupt mask for device */ - /* XXX - Should this also include net_imask? */ + &net_imask /* XXX - Should this also include tty_imask? */ }; DATA_SET(pccarddrv_set, fe_info); diff --git a/sys/i386/isa/if_fe.c b/sys/i386/isa/if_fe.c index 8fae12310ee9..85e948d88d20 100644 --- a/sys/i386/isa/if_fe.c +++ b/sys/i386/isa/if_fe.c @@ -21,7 +21,7 @@ */ /* - * $Id: if_fe.c,v 1.40 1998/03/28 13:24:09 bde Exp $ + * $Id: if_fe.c,v 1.41 1998/06/07 17:10:31 dfr Exp $ * * Device driver for Fujitsu MB86960A/MB86965A based Ethernet cards. * To be used with FreeBSD 2.x @@ -76,11 +76,7 @@ #include "opt_ipx.h" #include -#include #include - -#include - #include #include #include @@ -124,6 +120,7 @@ /* PCCARD suport */ #include "card.h" #if NCARD > 0 +#include #include #include #include @@ -324,9 +321,9 @@ outblk ( struct fe_softc * sc, int offs, u_char const * mem, int len ) /* * PC-Card (PCMCIA) specific code. */ -static int feinit (struct pccard_devinfo *); -static void feunload (struct pccard_devinfo *); -static int fe_card_intr (struct pccard_devinfo *); +static int feinit ( struct pccard_devinfo * ); +static void feunload ( struct pccard_devinfo * ); +static int fe_card_intr ( struct pccard_devinfo * ); static struct pccard_device fe_info = { "fe", @@ -334,8 +331,7 @@ static struct pccard_device fe_info = { feunload, fe_card_intr, 0, /* Attributes - presently unused */ - &net_imask /* Interrupt mask for device */ - /* XXX - Should this also include net_imask? */ + &net_imask /* XXX - Should this also include tty_imask? */ }; DATA_SET(pccarddrv_set, fe_info);