diff options
-rw-r--r-- | sys/arm/arm/pmap-v6-new.c | 4 | ||||
-rw-r--r-- | sys/dev/isci/scil/scic_sds_phy.h | 2 | ||||
-rw-r--r-- | sys/dev/netmap/netmap.c | 2 | ||||
-rw-r--r-- | sys/mips/cavium/cvmx_config.h | 2 | ||||
-rw-r--r-- | sys/netinet/if_ether.c | 6 |
5 files changed, 8 insertions, 8 deletions
diff --git a/sys/arm/arm/pmap-v6-new.c b/sys/arm/arm/pmap-v6-new.c index 8d14ed7..5d7e571 100644 --- a/sys/arm/arm/pmap-v6-new.c +++ b/sys/arm/arm/pmap-v6-new.c @@ -3194,7 +3194,7 @@ setpte1: * When page is not modified, PTE2_RO can be set without * a TLB invalidation. * - * Note: When modified bit is being set, then in harware case, + * Note: When modified bit is being set, then in hardware case, * the TLB entry is re-read (updated) from PT2, and in * software case (abort), the PTE2 is read from PT2 and * TLB flushed if changed. The following cmpset() solves @@ -6170,7 +6170,7 @@ pte1_seta: /* * Handle modify bits for page and section. Note that the modify * bit is emulated by software. So PTEx_RO is software read only - * bit and PTEx_NM flag is real harware read only bit. + * bit and PTEx_NM flag is real hardware read only bit. * * QQQ: This is hardware emulation, we do not call userret() * for aborts from user mode. diff --git a/sys/dev/isci/scil/scic_sds_phy.h b/sys/dev/isci/scil/scic_sds_phy.h index d8a3c73..501a724 100644 --- a/sys/dev/isci/scil/scic_sds_phy.h +++ b/sys/dev/isci/scil/scic_sds_phy.h @@ -201,7 +201,7 @@ enum SCIC_SDS_PHY_PROTOCOL * @struct SCIC_SDS_PHY * * @brief This structure contains or references all of the data necessary to - * represent the core phy object and SCU harware protocol engine. + * represent the core phy object and SCU hardware protocol engine. */ typedef struct SCIC_SDS_PHY { diff --git a/sys/dev/netmap/netmap.c b/sys/dev/netmap/netmap.c index 56bbf12..f1b8610 100644 --- a/sys/dev/netmap/netmap.c +++ b/sys/dev/netmap/netmap.c @@ -589,7 +589,7 @@ netmap_set_all_rings(struct netmap_adapter *na, int stopped) /* * Convenience function used in drivers. Waits for current txsync()s/rxsync()s * to finish and prevents any new one from starting. Call this before turning - * netmap mode off, or before removing the harware rings (e.g., on module + * netmap mode off, or before removing the hardware rings (e.g., on module * onload). As a rule of thumb for linux drivers, this should be placed near * each napi_disable(). */ diff --git a/sys/mips/cavium/cvmx_config.h b/sys/mips/cavium/cvmx_config.h index 1aeabc2..aed3f73 100644 --- a/sys/mips/cavium/cvmx_config.h +++ b/sys/mips/cavium/cvmx_config.h @@ -63,7 +63,7 @@ #define CVMX_ENABLE_PKO_FUNCTIONS /* Define to enable the use of simple executive helper functions. These -** include many harware setup functions. See cvmx-helper.[ch] for +** include many hardware setup functions. See cvmx-helper.[ch] for ** details. */ #define CVMX_ENABLE_HELPER_FUNCTIONS diff --git a/sys/netinet/if_ether.c b/sys/netinet/if_ether.c index 931883d..4c0c586b 100644 --- a/sys/netinet/if_ether.c +++ b/sys/netinet/if_ether.c @@ -599,7 +599,7 @@ arpintr(struct mbuf *m) layer = "firewire"; /* - * Restrict too long harware addresses. + * Restrict too long hardware addresses. * Currently we are capable of handling 20-byte * addresses ( sizeof(lle->ll_addr) ) */ @@ -608,8 +608,8 @@ arpintr(struct mbuf *m) break; default: ARP_LOG(LOG_NOTICE, - "packet with unknown harware format 0x%02d received on %s\n", - ntohs(ar->ar_hrd), if_name(ifp)); + "packet with unknown hardware format 0x%02d received on " + "%s\n", ntohs(ar->ar_hrd), if_name(ifp)); m_freem(m); return; } |