diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-09-27 13:03:31 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2008-09-27 13:03:31 +0000 |
commit | 8f1d08b605190f1fd8b68825b2fe993920789a57 (patch) | |
tree | d76db154cd48f8dd985d4ee9c87ce12fe004bf59 | |
parent | 892b64ba666e5bee9041f10e7067334e604ac879 (diff) |
remove a debug printf that is no longer required
-rw-r--r-- | sys/dev/pci/if_jme.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/dev/pci/if_jme.c b/sys/dev/pci/if_jme.c index 493fcdf8396..9fcd90cbe15 100644 --- a/sys/dev/pci/if_jme.c +++ b/sys/dev/pci/if_jme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_jme.c,v 1.1 2008/09/26 10:35:15 jsg Exp $ */ +/* $OpenBSD: if_jme.c,v 1.2 2008/09/27 13:03:30 jsg Exp $ */ /*- * Copyright (c) 2008, Pyun YongHyeon <yongari@FreeBSD.org> * All rights reserved. @@ -628,7 +628,6 @@ jme_attach(struct device *parent, struct device *self, void *aux) IFQ_SET_MAXLEN(&ifp->if_snd, JME_TX_RING_CNT - 1); IFQ_SET_READY(&ifp->if_snd); strlcpy(ifp->if_xname, sc->sc_dev.dv_xname, IFNAMSIZ); - printf("XNAME= '%s'\n", ifp->if_xname); /* JMC250 supports Tx/Rx checksum offload and hardware vlan tagging. */ #if 0 |