diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-07-01 21:48:09 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-07-01 21:48:09 +0000 |
commit | edae86d8f4e8469b2861e3ab013838b6e1783469 (patch) | |
tree | c3208b0c2385ef27fb6d385ad1d98420b29963b1 /sys/dev/pci/if_re_pci.c | |
parent | fbb7b02884ed17bc3db1de982fceab85a6675676 (diff) |
(fxp/re)_attach_common -> (fxp/re)_attach
Diffstat (limited to 'sys/dev/pci/if_re_pci.c')
-rw-r--r-- | sys/dev/pci/if_re_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c index 39637a003c8..933837c263f 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.14 2006/06/30 16:51:30 deraadt Exp $ */ +/* $OpenBSD: if_re_pci.c,v 1.15 2006/07/01 21:48:08 brad Exp $ */ /* * Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org> @@ -200,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_common(sc); + re_attach(sc); } |