diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-08 11:17:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-03-08 11:17:09 +0000 |
commit | a16fb726a69564a9684a9ce84bf35fbcb021e231 (patch) | |
tree | 003272888c79a0765850c64d3af2c28d116a762e /sys | |
parent | f78e8c6161bedeaacbd501471753a5b9a3645e8c (diff) |
remove excess xname printing
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isa/if_le_isapnp.c | 5 | ||||
-rw-r--r-- | sys/dev/isa/sb_isapnp.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/isa/if_le_isapnp.c b/sys/dev/isa/if_le_isapnp.c index 029011ecd21..8d6b95e763f 100644 --- a/sys/dev/isa/if_le_isapnp.c +++ b/sys/dev/isa/if_le_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_le_isapnp.c,v 1.6 1998/09/16 22:41:21 jason Exp $ */ +/* $OpenBSD: if_le_isapnp.c,v 1.7 1999/03/08 11:17:08 deraadt Exp $ */ /* $NetBSD: if_le_isa.c,v 1.2 1996/05/12 23:52:56 mycroft Exp $ */ /*- @@ -113,8 +113,7 @@ le_isapnp_attach(parent, self, aux) sc->sc_mem = malloc(16384, M_DEVBUF, M_NOWAIT); if (sc->sc_mem == 0) { - printf("%s: couldn't allocate memory for card\n", - sc->sc_dev.dv_xname); + printf(": couldn't allocate memory for card\n"); return; } diff --git a/sys/dev/isa/sb_isapnp.c b/sys/dev/isa/sb_isapnp.c index 2f8b41095ec..437277c0b1f 100644 --- a/sys/dev/isa/sb_isapnp.c +++ b/sys/dev/isa/sb_isapnp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sb_isapnp.c,v 1.10 1999/01/11 04:15:18 downsj Exp $ */ +/* $OpenBSD: sb_isapnp.c,v 1.11 1999/03/08 11:17:08 deraadt Exp $ */ /* $NetBSD: sb_isa.c,v 1.3 1997/03/20 11:03:11 mycroft Exp $ */ /* @@ -116,7 +116,7 @@ sb_isapnp_attach(parent, self, aux) #endif if (!sbmatch(sc)) { - printf("%s: sbmatch failed\n", sc->sc_dev.dv_xname); + printf(": sbmatch failed\n"); return; } |