diff options
author | 2009-10-31 12:26:36 +0000 | |
---|---|---|
committer | 2009-10-31 12:26:36 +0000 | |
commit | c83afcc99a53908b8aeea51f5ddbf8be064b5cbc (patch) | |
tree | 64b5ca38826feea08ee73ebf4bcdb8bec9b7542c | |
parent | Use suser when possible. Suggested by miod@. (diff) | |
download | wireguard-openbsd-c83afcc99a53908b8aeea51f5ddbf8be064b5cbc.tar.xz wireguard-openbsd-c83afcc99a53908b8aeea51f5ddbf8be064b5cbc.zip |
s/Mhz/MHz/, MHz is a multiple of the SI unit hertz (whose symbol is Hz).
-rw-r--r-- | share/man/man4/vge.4 | 6 | ||||
-rw-r--r-- | sys/arch/i386/pci/piixpcib.c | 4 | ||||
-rw-r--r-- | sys/arch/sgi/sgi/sginode.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/drm/i915_drv.h | 6 | ||||
-rw-r--r-- | sys/dev/pci/if_em_hw.h | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/share/man/man4/vge.4 b/share/man/man4/vge.4 index b68a779f107..6fcf15a68b9 100644 --- a/share/man/man4/vge.4 +++ b/share/man/man4/vge.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: vge.4,v 1.17 2009/09/08 06:50:02 jmc Exp $ +.\" $OpenBSD: vge.4,v 1.18 2009/10/31 12:26:36 sobrado Exp $ .\" $FreeBSD: vge.4,v 1.6 2004/11/24 19:06:43 brueffer Exp $ .\" .\" Copyright (c) 2004 @@ -31,7 +31,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF .\" THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: September 8 2009 $ +.Dd $Mdocdate: October 31 2009 $ .Dt VGE 4 .Os .Sh NAME @@ -57,7 +57,7 @@ ZyXEL GN650-T 64-bit PCI Gigabit Ethernet NIC (ZX1701) ZyXEL GN670-T 32-bit PCI Gigabit Ethernet NIC (ZX1702) .El .Pp -The VT6122 is a 33/66Mhz 64-bit PCI device which combines a tri-speed +The VT6122 is a 33/66MHz 64-bit PCI device which combines a tri-speed MAC with an integrated 10/100/1000 copper PHY. (Some older cards use an external PHY.) The MAC supports IPv4 transmit/receive IP/TCP/UDP checksum offload, diff --git a/sys/arch/i386/pci/piixpcib.c b/sys/arch/i386/pci/piixpcib.c index 553056751d3..09efa939470 100644 --- a/sys/arch/i386/pci/piixpcib.c +++ b/sys/arch/i386/pci/piixpcib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: piixpcib.c,v 1.4 2008/06/26 05:42:11 ray Exp $ */ +/* $OpenBSD: piixpcib.c,v 1.5 2009/10/31 12:26:36 sobrado Exp $ */ /* * Copyright (c) 2007 Stefan Sperling <stsp@stsp.in-berlin.de> @@ -345,7 +345,7 @@ piixpcib_setperf(int level) * * And yes, I've tried it the way the Linux speedstep-smi * driver does it, thank you very much. It doesn't work - * half the time (my machine has more than 4Mhz ;-) and + * half the time (my machine has more than 4MHz ;-) and * even crashes some machines without specific workarounds. * * So call p3_update_cpuspeed() from arch/i386/i386/machdep.c diff --git a/sys/arch/sgi/sgi/sginode.c b/sys/arch/sgi/sgi/sginode.c index d6e926d4b3c..e95bf5f649f 100644 --- a/sys/arch/sgi/sgi/sginode.c +++ b/sys/arch/sgi/sgi/sginode.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sginode.c,v 1.12 2009/10/16 00:15:49 miod Exp $ */ +/* $OpenBSD: sginode.c,v 1.13 2009/10/31 12:26:36 sobrado Exp $ */ /* * Copyright (c) 2008, 2009 Miodrag Vallat. * @@ -150,7 +150,7 @@ kl_first_pass_comp(klinfo_t *comp, void *arg) switch (comp->struct_type) { case KLSTRUCT_CPU: cpucomp = (klcpu_t *)comp; - DB_PRF(("\tcpu type %x/%x %dMhz cache %dMB speed %dMhz\n", + DB_PRF(("\tcpu type %x/%x %dMHz cache %dMB speed %dMHz\n", cpucomp->cpu_prid, cpucomp->cpu_fpirr, cpucomp->cpu_speed, cpucomp->cpu_scachesz, cpucomp->cpu_scachespeed)); diff --git a/sys/dev/pci/drm/i915_drv.h b/sys/dev/pci/drm/i915_drv.h index 00966764377..8436def5b57 100644 --- a/sys/dev/pci/drm/i915_drv.h +++ b/sys/dev/pci/drm/i915_drv.h @@ -751,9 +751,9 @@ extern int i915_set_status_page(struct drm_device *, void *, struct drm_file *); * dummy bytes in the datastream at an increased clock rate, with both sides of * the link knowing how many bytes are fill. * - * So, for a mode with a dotclock of 65Mhz, we would want to double the clock - * rate to 130Mhz to get a bus rate of 1.30Ghz. The DPLL clock rate would be - * set to 130Mhz, and the SDVO multiplier set to 2x in this register and + * So, for a mode with a dotclock of 65MHz, we would want to double the clock + * rate to 130MHz to get a bus rate of 1.30Ghz. The DPLL clock rate would be + * set to 130MHz, and the SDVO multiplier set to 2x in this register and * through an SDVO command. * * This register field has values of multiplication factor minus 1, with diff --git a/sys/dev/pci/if_em_hw.h b/sys/dev/pci/if_em_hw.h index 2bec83a44d4..485e1cec2ce 100644 --- a/sys/dev/pci/if_em_hw.h +++ b/sys/dev/pci/if_em_hw.h @@ -31,7 +31,7 @@ *******************************************************************************/ -/* $OpenBSD: if_em_hw.h,v 1.33 2009/09/04 22:13:51 dms Exp $ */ +/* $OpenBSD: if_em_hw.h,v 1.34 2009/10/31 12:26:36 sobrado Exp $ */ /* $FreeBSD: if_em_hw.h,v 1.15 2005/05/26 23:32:02 tackerman Exp $ */ /* if_em_hw.h @@ -1549,7 +1549,7 @@ struct em_hw { #define E1000_STATUS_DOCK_CI 0x00000800 /* Change in Dock/Undock state. Clear on write '0'. */ #define E1000_STATUS_GIO_MASTER_ENABLE 0x00080000 /* Status of Master requests. */ #define E1000_STATUS_MTXCKOK 0x00000400 /* MTX clock running OK */ -#define E1000_STATUS_PCI66 0x00000800 /* In 66Mhz slot */ +#define E1000_STATUS_PCI66 0x00000800 /* In 66MHz slot */ #define E1000_STATUS_BUS64 0x00001000 /* In 64 bit slot */ #define E1000_STATUS_PCIX_MODE 0x00002000 /* PCI-X mode */ #define E1000_STATUS_PCIX_SPEED 0x0000C000 /* PCI-X bus speed */ |