diff options
author | 2008-09-27 13:03:30 +0000 | |
---|---|---|
committer | 2008-09-27 13:03:30 +0000 | |
commit | a7105e3ed9aaeaf7014252cc92d4f8d080c600f9 (patch) | |
tree | 15dd5c3caec5bcc229cf7425827a1ec757c68685 | |
parent | Add a man page for atphy(4). (diff) | |
download | wireguard-openbsd-a7105e3ed9aaeaf7014252cc92d4f8d080c600f9.tar.xz wireguard-openbsd-a7105e3ed9aaeaf7014252cc92d4f8d080c600f9.zip |
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 |