aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorGavin Atkinson <gavin@FreeBSD.org>2010-02-05 08:52:51 +0000
committerGavin Atkinson <gavin@FreeBSD.org>2010-02-05 08:52:51 +0000
commit75cf52103d463aa83358381aa1a6b18a7c7b20b9 (patch)
tree07d899759b7ed93cb8e745fbb402270ad9a208fb /sys
parent3a5d679ee579dc7d0d42d7797b89b579a9bf4535 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/local_apic.c2
-rw-r--r--sys/dev/aic7xxx/aic79xx_pci.c8
-rw-r--r--sys/dev/ath/ath_hal/ar5210/ar5210_reset.c2
-rw-r--r--sys/dev/ath/if_ath.c2
-rw-r--r--sys/dev/ct/ct_isa.c2
-rw-r--r--sys/dev/mly/mly.c2
-rw-r--r--sys/i386/i386/local_apic.c2
7 files changed, 10 insertions, 10 deletions
diff --git a/sys/amd64/amd64/local_apic.c b/sys/amd64/amd64/local_apic.c
index 87bec91b6c4f..98ed4df8307d 100644
--- a/sys/amd64/amd64/local_apic.c
+++ b/sys/amd64/amd64/local_apic.c
@@ -448,7 +448,7 @@ lapic_setup_clock(void)
panic("lapic: Divisor too big");
value /= 2;
if (bootverbose)
- printf("lapic: Divisor %lu, Frequency %lu hz\n",
+ printf("lapic: Divisor %lu, Frequency %lu Hz\n",
lapic_timer_divisor, value);
/*
diff --git a/sys/dev/aic7xxx/aic79xx_pci.c b/sys/dev/aic7xxx/aic79xx_pci.c
index 928012e0475d..1e3bbed392f1 100644
--- a/sys/dev/aic7xxx/aic79xx_pci.c
+++ b/sys/dev/aic7xxx/aic79xx_pci.c
@@ -248,10 +248,10 @@ static const char *pci_bus_modes[] =
"PCI bus mode unknown",
"PCI bus mode unknown",
"PCI bus mode unknown",
- "PCI-X 101-133Mhz",
- "PCI-X 67-100Mhz",
- "PCI-X 50-66Mhz",
- "PCI 33 or 66Mhz"
+ "PCI-X 101-133MHz",
+ "PCI-X 67-100MHz",
+ "PCI-X 50-66MHz",
+ "PCI 33 or 66MHz"
};
#define TESTMODE 0x00000800ul
diff --git a/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c b/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
index dd35e2b7bf0e..43e97ede3bb5 100644
--- a/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
+++ b/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c
@@ -87,7 +87,7 @@ ar5210Reset(struct ath_hal *ah, HAL_OPMODE opmode,
if (!IEEE80211_IS_CHAN_5GHZ(chan)) {
/* Only 11a mode */
- HALDEBUG(ah, HAL_DEBUG_ANY, "%s: channel not 5Ghz\n", __func__);
+ HALDEBUG(ah, HAL_DEBUG_ANY, "%s: channel not 5GHz\n", __func__);
FAIL(HAL_EINVAL);
}
/*
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c
index 5628addc33aa..c1e43eb54de9 100644
--- a/sys/dev/ath/if_ath.c
+++ b/sys/dev/ath/if_ath.c
@@ -5352,7 +5352,7 @@ ath_chan_set(struct ath_softc *sc, struct ieee80211_channel *chan)
ath_stoprecv(sc); /* turn off frame recv */
if (!ath_hal_reset(ah, sc->sc_opmode, chan, AH_TRUE, &status)) {
if_printf(ifp, "%s: unable to reset "
- "channel %u (%u Mhz, flags 0x%x), hal status %u\n",
+ "channel %u (%u MHz, flags 0x%x), hal status %u\n",
__func__, ieee80211_chan2ieee(ic, chan),
chan->ic_freq, chan->ic_flags, status);
return EIO;
diff --git a/sys/dev/ct/ct_isa.c b/sys/dev/ct/ct_isa.c
index a1e30457b189..693572fe1c69 100644
--- a/sys/dev/ct/ct_isa.c
+++ b/sys/dev/ct/ct_isa.c
@@ -316,7 +316,7 @@ ct_isa_attach(device_t dev)
break;
}
#if 0
- printf("%s: chiprev %s chipclk %d Mhz\n",
+ printf("%s: chiprev %s chipclk %d MHz\n",
slp->sl_dev.dv_xname, s, ct->sc_chipclk);
#endif
diff --git a/sys/dev/mly/mly.c b/sys/dev/mly/mly.c
index 1f61542ba03b..0c013bce5d58 100644
--- a/sys/dev/mly/mly.c
+++ b/sys/dev/mly/mly.c
@@ -2528,7 +2528,7 @@ mly_describe_controller(struct mly_softc *sc)
mly_describe_code(mly_table_memorytype, mi->memory_type),
mi->memory_parity ? "+parity": "",mi->memory_ecc ? "+ECC": "",
mi->cache_size);
- mly_printf(sc, "CPU: %s @ %dMHZ\n",
+ mly_printf(sc, "CPU: %s @ %dMHz\n",
mly_describe_code(mly_table_cputype, mi->cpu[0].type), mi->cpu[0].speed);
if (mi->l2cache_size != 0)
mly_printf(sc, "%dKB L2 cache\n", mi->l2cache_size);
diff --git a/sys/i386/i386/local_apic.c b/sys/i386/i386/local_apic.c
index 9b1d1b3173e0..1451ec808e30 100644
--- a/sys/i386/i386/local_apic.c
+++ b/sys/i386/i386/local_apic.c
@@ -450,7 +450,7 @@ lapic_setup_clock(void)
panic("lapic: Divisor too big");
value /= 2;
if (bootverbose)
- printf("lapic: Divisor %lu, Frequency %lu hz\n",
+ printf("lapic: Divisor %lu, Frequency %lu Hz\n",
lapic_timer_divisor, value);
/*