svn commit: r354412 - head/sys/dev/mgb

Ed Maste emaste at FreeBSD.org
Wed Nov 6 20:43:41 UTC 2019


Author: emaste
Date: Wed Nov  6 20:43:40 2019
New Revision: 354412
URL: https://svnweb.freebsd.org/changeset/base/354412

Log:
  mgb: Correct spello - recieve -> receive
  
  Reported by:	N. J. Mann
  MFC with:	r354410

Modified:
  head/sys/dev/mgb/if_mgb.c
  head/sys/dev/mgb/if_mgb.h

Modified: head/sys/dev/mgb/if_mgb.c
==============================================================================
--- head/sys/dev/mgb/if_mgb.c	Wed Nov  6 19:52:31 2019	(r354411)
+++ head/sys/dev/mgb/if_mgb.c	Wed Nov  6 20:43:40 2019	(r354412)
@@ -51,10 +51,10 @@ __FBSDID("$FreeBSD$");
  *     structs based on ncpus.
  * - RX/TX Checksum Offloading support
  * - VLAN support
- * - Recieve Packet Filtering (Multicast Perfect/Hash Address) support
+ * - Receive Packet Filtering (Multicast Perfect/Hash Address) support
  * - Wake on LAN (WoL) support
  * - TX LSO support
- * - Recieve Side Scaling (RSS) support
+ * - Receive Side Scaling (RSS) support
  * - Debugging Capabilities:
  *   - Could include MAC statistics and
  *     error status registers in sysctl.

Modified: head/sys/dev/mgb/if_mgb.h
==============================================================================
--- head/sys/dev/mgb/if_mgb.h	Wed Nov  6 19:52:31 2019	(r354411)
+++ head/sys/dev/mgb/if_mgb.h	Wed Nov  6 20:43:40 2019	(r354412)
@@ -75,7 +75,7 @@
 #define MGB_MAC_STAT_RX_FRAME_CNT	0x1254
 /* etc. */
 
-/** Recieve Filtering Engine **/
+/** Receive Filtering Engine **/
 #define MGB_RFE_CTL			0x508
 #define MGB_RFE_ALLOW_BROADCAST		(1 << 10)
 #define MGB_RFE_ALLOW_MULTICAST		(1 << 9)


More information about the svn-src-all mailing list