Remove unused printf arguments

This commit is contained in:
christos 1996-05-03 17:32:20 +00:00
parent 05dbb85594
commit 021d3e082f
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: if_de.c,v 1.17 1996/04/01 19:37:54 cgd Exp $ */
/* $NetBSD: if_de.c,v 1.18 1996/05/03 17:32:20 christos Exp $ */
/*-
* Copyright (c) 1994, 1995 Matt Thomas (matt@lkg.dec.com)
@ -2613,14 +2613,14 @@ tulip_pci_attach(
if (pci_intr_map(pc, pa->pa_intrtag, pa->pa_intrpin,
pa->pa_intrline, &intrhandle)) {
printf(": couldn't map interrupt\n", self->dv_xname);
printf(": couldn't map interrupt\n");
return;
}
intrstr = pci_intr_string(pc, intrhandle);
sc->tulip_ih = pci_intr_establish(pc, intrhandle, IPL_NET,
tulip_intr, sc);
if (sc->tulip_ih == NULL) {
printf(": couldn't establish interrupt", self->dv_xname);
printf(": couldn't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");