From 39ee9af4310e251d0bef3034367f3f2460a4c20e Mon Sep 17 00:00:00 2001 From: mdodd Date: Tue, 27 Jul 1999 05:08:36 +0000 Subject: Case matters. DEv_METHOD to DEV_METHOD. --- sys/pci/pci.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sys/pci') diff --git a/sys/pci/pci.c b/sys/pci/pci.c index 98f76c6..c2091f3 100644 --- a/sys/pci/pci.c +++ b/sys/pci/pci.c @@ -23,7 +23,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: pci.c,v 1.110 1999/07/03 20:17:07 peter Exp $ + * $Id: pci.c,v 1.111 1999/07/27 04:28:14 mdodd Exp $ * */ @@ -1139,7 +1139,7 @@ pci_probe_nomatch(device_t dev, device_t child) dinfo = device_get_ivars(child); cfg = &dinfo->cfg; - device_printf(dev, "unknown card %c%c%c%04x (vendor=0x%04x, dev=0x%04x) at %d.$d", + device_printf(dev, "unknown card %c%c%c%04x (vendor=0x%04x, dev=0x%04x) at %d.%d", PCI_MFCTR_CHAR0(cfg->vendor), PCI_MFCTR_CHAR1(cfg->vendor), PCI_MFCTR_CHAR2(cfg->vendor), @@ -1472,7 +1472,7 @@ static device_method_t pci_methods[] = { /* Bus interface */ DEVMETHOD(bus_print_child, pci_print_child), - DEvMETHOD(bus_probe_nomatch, pci_probe_nomatch), + DEVMETHOD(bus_probe_nomatch, pci_probe_nomatch), DEVMETHOD(bus_read_ivar, pci_read_ivar), DEVMETHOD(bus_write_ivar, pci_write_ivar), DEVMETHOD(bus_driver_added, bus_generic_driver_added), -- cgit v1.1