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/dev/isa/if_le_isapnp.c | |
parent | f78e8c6161bedeaacbd501471753a5b9a3645e8c (diff) |
remove excess xname printing
Diffstat (limited to 'sys/dev/isa/if_le_isapnp.c')
-rw-r--r-- | sys/dev/isa/if_le_isapnp.c | 5 |
1 files changed, 2 insertions, 3 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; } |