summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_tl.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pci/if_tl.c')
-rw-r--r--sys/pci/if_tl.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/pci/if_tl.c b/sys/pci/if_tl.c
index de4f822..8bc0827 100644
--- a/sys/pci/if_tl.c
+++ b/sys/pci/if_tl.c
@@ -1439,16 +1439,11 @@ static int tl_newbuf(sc, c)
struct mbuf *m_new = NULL;
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
- if (m_new == NULL) {
- printf("tl%d: no memory for rx list -- packet dropped!\n",
- sc->tl_unit);
+ if (m_new == NULL)
return(ENOBUFS);
- }
MCLGET(m_new, M_DONTWAIT);
if (!(m_new->m_flags & M_EXT)) {
- printf("tl%d: no memory for rx list -- packet dropped!\n",
- sc->tl_unit);
m_freem(m_new);
return(ENOBUFS);
}
OpenPOWER on IntegriCloud