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_fxp_pci.c | |
parent | fbb7b02884ed17bc3db1de982fceab85a6675676 (diff) |
(fxp/re)_attach_common -> (fxp/re)_attach
Diffstat (limited to 'sys/dev/pci/if_fxp_pci.c')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index 57c9473c0f1..d2348321a36 100644 --- a/sys/dev/pci/if_fxp_pci.c +++ b/sys/dev/pci/if_fxp_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_pci.c,v 1.47 2006/06/17 18:00:43 brad Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.48 2006/07/01 21:48:08 brad Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -247,7 +247,7 @@ fxp_pci_attach(parent, self, aux) } /* Do generic parts of attach. */ - if (fxp_attach_common(sc, intrstr)) { + if (fxp_attach(sc, intrstr)) { /* Failed! */ pci_intr_disestablish(pc, sc->sc_ih); bus_space_unmap(sc->sc_st, sc->sc_sh, iosize); |