diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-28 18:34:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-28 18:34:39 +0000 |
commit | 3a751c740f25666498ccb5d7c20b3cbf053571f3 (patch) | |
tree | f8c870157811197b4a33176af0172134b0380501 /sys/dev/pci/if_bnx.c | |
parent | 6a96d38dabb00c1e4597e3571071aa5a61c15b16 (diff) |
unify firmware load failure messages; ok mglocker
Diffstat (limited to 'sys/dev/pci/if_bnx.c')
-rw-r--r-- | sys/dev/pci/if_bnx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_bnx.c b/sys/dev/pci/if_bnx.c index cbb1408448e..ac474cd7c1d 100644 --- a/sys/dev/pci/if_bnx.c +++ b/sys/dev/pci/if_bnx.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_bnx.c,v 1.53 2007/07/04 00:20:22 krw Exp $ */ +/* $OpenBSD: if_bnx.c,v 1.54 2007/08/28 18:34:38 deraadt Exp $ */ /*- * Copyright (c) 2006 Broadcom Corporation @@ -766,7 +766,7 @@ bnx_attachhook(void *xsc) int error; if ((error = bnx_read_firmware(sc)) != 0) { - printf("%s: could not read firmware (error=%d)\n", + printf("%s: error %d, could not read firmware\n", sc->bnx_dev.dv_xname, error); return; } |