summaryrefslogtreecommitdiffstats
path: root/sys/dev/fe
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
committerrgrimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
commitc86f0c7a71e7ade3e38b325c186a9cf374e0411e (patch)
tree176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/dev/fe
parent423ba8f9bc23d93bfc244aca9b12563b1c9de90d (diff)
downloadFreeBSD-src-c86f0c7a71e7ade3e38b325c186a9cf374e0411e.zip
FreeBSD-src-c86f0c7a71e7ade3e38b325c186a9cf374e0411e.tar.gz
Remove trailing whitespace.
Diffstat (limited to 'sys/dev/fe')
-rw-r--r--sys/dev/fe/if_fe.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/fe/if_fe.c b/sys/dev/fe/if_fe.c
index ab09ce5..80aba82 100644
--- a/sys/dev/fe/if_fe.c
+++ b/sys/dev/fe/if_fe.c
@@ -806,7 +806,7 @@ fe_probe_ati ( struct isa_device * isa_dev, struct fe_softc * sc )
/*
* Determine the card type.
- * There may be a way to identify various models. FIXME.
+ * There may be a way to identify various models. FIXME.
*/
sc->type = FE_TYPE_AT1700;
sc->typestr = "AT1700/RE2000";
@@ -1552,7 +1552,7 @@ fe_start ( struct ifnet *ifp )
* We *could* do better job by peeking the send queue to
* know the length of the next packet. Current version just
* tests against the worst case (i.e., longest packet). FIXME.
- *
+ *
* When adding the packet-peek feature, don't forget adding a
* test on txb_count against QUEUEING_MAX.
* There is a little chance the packet count exceeds
@@ -1755,7 +1755,7 @@ fe_tint ( struct fe_softc * sc, u_char tstat )
/*
* The transmitter is no more active.
- * Reset output active flag and watchdog timer.
+ * Reset output active flag and watchdog timer.
*/
sc->sc_if.if_flags &= ~IFF_OACTIVE;
sc->sc_if.if_timer = 0;
@@ -1879,7 +1879,7 @@ fe_rint ( struct fe_softc * sc, u_char rstat )
"fe%d: received a short packet? (%u bytes)\n",
sc->sc_unit, len );
}
-#endif
+#endif
/*
* Go get a packet.
@@ -1920,7 +1920,7 @@ feintr ( int unit )
* Loop until there are no more new interrupt conditions.
*/
for (;;) {
-
+
#if FE_DEBUG >= 4
fe_dump( LOG_INFO, sc, "intr()" );
#endif
@@ -2312,7 +2312,7 @@ fe_get_packet ( struct fe_softc * sc, u_short len )
*
* If an mbuf chain is too long for an Ethernet frame, it is not sent.
* Packets shorter than Ethernet minimum are legal, and we pad them
- * before sending out. An exception is "partial" packets which are
+ * before sending out. An exception is "partial" packets which are
* shorter than mandatory Ethernet header.
*
* I wrote a code for an experimental "delayed padding" technique.
@@ -2403,7 +2403,7 @@ fe_write_mbufs ( struct fe_softc *sc, struct mbuf *m )
#endif
/*
- * Transfer the data from mbuf chain to the transmission buffer.
+ * Transfer the data from mbuf chain to the transmission buffer.
* MB86960 seems to require that data be transferred as words, and
* only words. So that we require some extra code to patch
* over odd-length mbufs.
@@ -2503,7 +2503,7 @@ fe_mcaf ( struct fe_softc *sc )
log( LOG_INFO, "fe%d: hash(%s) == %d\n",
sc->sc_unit, ether_sprintf( enm->enm_addrlo ), index );
#endif
-
+
filter.data[index >> 3] |= 1 << (index & 7);
ETHER_NEXT_MULTI(step, enm);
}
@@ -2669,7 +2669,7 @@ fe_setlinkaddr ( struct fe_softc * sc )
{
struct ifaddr *ifa;
struct sockaddr_dl * sdl;
-
+
/*
* Search down the ifa address list looking for the AF_LINK type entry.
*/
OpenPOWER on IntegriCloud