diff options
Diffstat (limited to 'sys/dev/pci/if_re_pci.c')
-rw-r--r-- | sys/dev/pci/if_re_pci.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c index cc9cb19d0cc..9d7d71e3d22 100644 --- a/sys/dev/pci/if_re_pci.c +++ b/sys/dev/pci/if_re_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_re_pci.c,v 1.18 2006/11/06 20:10:58 deraadt Exp $ */ +/* $OpenBSD: if_re_pci.c,v 1.19 2006/11/28 20:04:02 brad Exp $ */ /* * Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org> @@ -184,7 +184,6 @@ re_pci_attach(struct device *parent, struct device *self, void *aux) printf(" at %s", intrstr); return; } - printf(": %s", intrstr); sc->sc_dmat = pa->pa_dmat; sc->sc_flags |= RL_ENABLED; @@ -201,5 +200,5 @@ re_pci_attach(struct device *parent, struct device *self, void *aux) sc->rl_type = RL_8169; /* Call bus-independent attach routine */ - re_attach(sc); + re_attach(sc, intrstr); } |