summaryrefslogtreecommitdiffstats
path: root/sys/dev/et
diff options
context:
space:
mode:
authoryongari <yongari@FreeBSD.org>2009-11-19 22:59:52 +0000
committeryongari <yongari@FreeBSD.org>2009-11-19 22:59:52 +0000
commit5b747869cea58ac47587b51889a10b0247b7a334 (patch)
treeb96017976896cd4ada2920724e07f3b52c4bc2a2 /sys/dev/et
parent92a044b3fb6817376253c85f5499677b6def3f87 (diff)
downloadFreeBSD-src-5b747869cea58ac47587b51889a10b0247b7a334.zip
FreeBSD-src-5b747869cea58ac47587b51889a10b0247b7a334.tar.gz
Fix copy & paste error and remove extra space before colon.
Pointed out by: danfe
Diffstat (limited to 'sys/dev/et')
-rw-r--r--sys/dev/et/if_et.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/et/if_et.c b/sys/dev/et/if_et.c
index b75d3e0..92bf540 100644
--- a/sys/dev/et/if_et.c
+++ b/sys/dev/et/if_et.c
@@ -78,7 +78,7 @@ MODULE_DEPEND(et, miibus, 1, 1, 1);
/* Tunables. */
static int msi_disable = 0;
-TUNABLE_INT("hw.re.msi_disable", &msi_disable);
+TUNABLE_INT("hw.et.msi_disable", &msi_disable);
static int et_probe(device_t);
static int et_attach(device_t);
@@ -276,7 +276,7 @@ et_attach(device_t dev)
sc->sc_flags |= ET_FLAG_PCIE;
msic = pci_msi_count(dev);
if (bootverbose)
- device_printf(dev, "MSI count : %d\n", msic);
+ device_printf(dev, "MSI count: %d\n", msic);
}
if (msic > 0 && msi_disable == 0) {
msic = 1;
OpenPOWER on IntegriCloud