summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDavid Gwynne <dlg@cvs.openbsd.org>2019-01-29 01:41:30 +0000
committerDavid Gwynne <dlg@cvs.openbsd.org>2019-01-29 01:41:30 +0000
commit661a2c90679b24881ee4e7112c853df8dc7560c6 (patch)
treec35dd142f3fc765cb7ac32236069545f5970eca6 /sys
parentfc2cbac778c39a529b698757f5106f615d42c316 (diff)
get rid of some more debug printfs
suggested by jmatthew@
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_ixl.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/dev/pci/if_ixl.c b/sys/dev/pci/if_ixl.c
index 57a3b806a18..c4356ab65e5 100644
--- a/sys/dev/pci/if_ixl.c
+++ b/sys/dev/pci/if_ixl.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_ixl.c,v 1.17 2019/01/29 01:39:30 dlg Exp $ */
+/* $OpenBSD: if_ixl.c,v 1.18 2019/01/29 01:41:29 dlg Exp $ */
/*
* Copyright (c) 2013-2015, Intel Corporation
@@ -1897,10 +1897,6 @@ ixl_up(struct ixl_softc *sc)
ixl_wr(sc, I40E_PFINT_ITR0(1), 0x7a);
ixl_wr(sc, I40E_PFINT_ITR0(2), 0);
- printf("%s: info %08x data %08x\n", DEVNAME(sc),
- ixl_rd(sc, I40E_PFHMC_ERRORINFO),
- ixl_rd(sc, I40E_PFHMC_ERRORDATA));
-
return (ENETRESET);
free:
@@ -2032,10 +2028,6 @@ ixl_down(struct ixl_softc *sc)
}
if (error) {
- printf("%s: info %08x data %08x\n", DEVNAME(sc),
- ixl_rd(sc, I40E_PFHMC_ERRORINFO),
- ixl_rd(sc, I40E_PFHMC_ERRORDATA));
-
printf("%s: failed to shut down rings\n", DEVNAME(sc));
return (error);
}