diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-31 22:06:03 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2007-08-31 22:06:03 +0000 |
commit | f78242d87c67865f59d6e0f7b9f8323fce876a8f (patch) | |
tree | 48395441b13a590e46e038bdd78f0cd153ff450e | |
parent | a66bb8b38adf709dd1ae915c81753594c1d6973b (diff) |
new format firmware load message
-rw-r--r-- | sys/dev/ic/fxp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/fxp.c b/sys/dev/ic/fxp.c index 66417a23a13..20149de9bb6 100644 --- a/sys/dev/ic/fxp.c +++ b/sys/dev/ic/fxp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fxp.c,v 1.87 2007/06/06 09:43:44 henning Exp $ */ +/* $OpenBSD: fxp.c,v 1.88 2007/08/31 22:06:02 deraadt Exp $ */ /* $NetBSD: if_fxp.c,v 1.2 1997/06/05 02:01:55 thorpej Exp $ */ /* @@ -1821,8 +1821,8 @@ fxp_load_ucode(struct fxp_softc *sc) error = loadfirmware(uc->uname, (u_char **)&ucode_buf, &ucode_len); if (error) { - printf("%s: failed loadfirmware of file %s: errno %d\n", - sc->sc_dev.dv_xname, uc->uname, error); + printf("%s: error %d, could not read firmware %s\n", + sc->sc_dev.dv_xname, error, uc->uname); sc->sc_flags |= FXPF_UCODE; return; } |