aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/et
diff options
context:
space:
mode:
authorPyun YongHyeon <yongari@FreeBSD.org>2009-11-19 22:59:52 +0000
committerPyun YongHyeon <yongari@FreeBSD.org>2009-11-19 22:59:52 +0000
commitaccb4fcd921199d4acd000055452e4e488350d3f (patch)
treeb96017976896cd4ada2920724e07f3b52c4bc2a2 /sys/dev/et
parent8b3c64969bb7e0ddf9f0292b55b834593f2bf866 (diff)
downloadsrc-accb4fcd921199d4acd000055452e4e488350d3f.tar.gz
src-accb4fcd921199d4acd000055452e4e488350d3f.zip
Fix copy & paste error and remove extra space before colon.
Pointed out by: danfe
Notes
Notes: svn path=/head/; revision=199563
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 b75d3e01f709..92bf540ff7aa 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;