diff options
author | 2005-11-18 18:13:29 +0000 | |
---|---|---|
committer | 2005-11-18 18:13:29 +0000 | |
commit | 99557412417a5d96acdb36add184f67436ec9f7c (patch) | |
tree | f7ba9f835b74c62ee16d9aa073145693e586df8c | |
parent | Casefold on replace was killed ages ago (it was wrong). Remove a (diff) | |
download | wireguard-openbsd-99557412417a5d96acdb36add184f67436ec9f7c.tar.xz wireguard-openbsd-99557412417a5d96acdb36add184f67436ec9f7c.zip |
PCIX -> PCI-X in a few comments
-rw-r--r-- | sys/dev/pci/if_em.c | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_em.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index 485362fecc1..88aeb6717c0 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ -/* $OpenBSD: if_em.c,v 1.92 2005/11/18 05:32:06 brad Exp $ */ +/* $OpenBSD: if_em.c,v 1.93 2005/11/18 18:13:29 brad Exp $ */ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ #include <dev/pci/if_em.h> @@ -347,7 +347,7 @@ em_attach(struct device *parent, struct device *self, void *aux) printf(", address %s\n", ether_sprintf(sc->interface_data.ac_enaddr)); - /* Identify 82544 on PCIX */ + /* Identify 82544 on PCI-X */ em_get_bus_info(&sc->hw); if(sc->hw.bus_type == em_bus_type_pcix && sc->hw.mac_type == em_82544) { @@ -935,7 +935,7 @@ em_encap(struct em_softc *sc, struct mbuf *m_head) txd_used = 0; } for (j = 0; j < q.map->dm_nsegs; j++) { - /* If sc is 82544 and on PCIX bus */ + /* If sc is 82544 and on PCI-X bus */ if (sc->pcix_82544) { /* * Check the Address and Length combination and diff --git a/sys/dev/pci/if_em.h b/sys/dev/pci/if_em.h index 77e4ff46867..3c6a33f54a5 100644 --- a/sys/dev/pci/if_em.h +++ b/sys/dev/pci/if_em.h @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ /* $FreeBSD: if_em.h,v 1.26 2004/09/01 23:22:41 pdeuskar Exp $ */ -/* $OpenBSD: if_em.h,v 1.18 2005/11/13 03:48:08 brad Exp $ */ +/* $OpenBSD: if_em.h,v 1.19 2005/11/18 18:13:29 brad Exp $ */ #ifndef _EM_H_DEFINED_ #define _EM_H_DEFINED_ @@ -273,7 +273,7 @@ typedef enum _XSUM_CONTEXT_T { OFFLOAD_UDP_IP } XSUM_CONTEXT_T; -/* For 82544 PCIX Workaround */ +/* For 82544 PCI-X Workaround */ typedef struct _ADDRESS_LENGTH_PAIR { u_int64_t address; @@ -387,7 +387,7 @@ struct em_softc { u_int64_t tx_fifo_wrk_cnt; u_int32_t tx_head_addr; - /* For 82544 PCIX Workaround */ + /* For 82544 PCI-X Workaround */ boolean_t pcix_82544; boolean_t in_detach; |