From 102f6b20671abe75d6cb1544a98015a0d2bfdff8 Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 15 Sep 2005 19:41:03 +0000 Subject: [PATCH] Fixed a diagnostic message. --- sys/dev/txp/if_txp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/txp/if_txp.c b/sys/dev/txp/if_txp.c index 525321b94382..0a35070d069e 100644 --- a/sys/dev/txp/if_txp.c +++ b/sys/dev/txp/if_txp.c @@ -317,7 +317,7 @@ txp_attach(dev) ifp = sc->sc_ifp = if_alloc(IFT_ETHER); if (ifp == NULL) { - device_printf(dev, "couldn't set up irq\n"); + device_printf(dev, "can not if_alloc()\n"); error = ENOSPC; goto fail; }