From 5b747869cea58ac47587b51889a10b0247b7a334 Mon Sep 17 00:00:00 2001 From: yongari Date: Thu, 19 Nov 2009 22:59:52 +0000 Subject: Fix copy & paste error and remove extra space before colon. Pointed out by: danfe --- sys/dev/et/if_et.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/dev/et/if_et.c') 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; -- cgit v1.1