diff options
author | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2018-07-26 04:26:31 +0000 |
---|---|---|
committer | Jonathan Matthew <jmatthew@cvs.openbsd.org> | 2018-07-26 04:26:31 +0000 |
commit | dd0482f206a7a00610e4a0d8d246812f95567d73 (patch) | |
tree | 43d4c7b71c8c2d8b72e8ea17daac07458f55bf5c /sys/dev/pci/qle.c | |
parent | e5c209d4d3af63cccb73eeb60155445130e94750 (diff) |
remove "bad startup mboxes" printf - it never indicates a real problem,
and it always happens on 25xx controllers.
Diffstat (limited to 'sys/dev/pci/qle.c')
-rw-r--r-- | sys/dev/pci/qle.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/pci/qle.c b/sys/dev/pci/qle.c index 046b7c56eb6..4599ca184aa 100644 --- a/sys/dev/pci/qle.c +++ b/sys/dev/pci/qle.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qle.c,v 1.41 2018/07/03 07:07:17 jmatthew Exp $ */ +/* $OpenBSD: qle.c,v 1.42 2018/07/26 04:26:30 jmatthew Exp $ */ /* * Copyright (c) 2013, 2014 Jonathan Matthew <jmatthew@openbsd.org> @@ -462,8 +462,6 @@ qle_attach(struct device *parent, struct device *self, void *aux) if (qle_read_mbox(sc, 1) != 0x4953 || qle_read_mbox(sc, 2) != 0x5020) { /* try releasing the risc processor */ - printf("%s: bad startup mboxes: %x %x\n", DEVNAME(sc), - qle_read_mbox(sc, 1), qle_read_mbox(sc, 2)); qle_host_cmd(sc, QLE_HOST_CMD_RELEASE); } |