diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-08-09 21:12:52 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-08-09 21:12:52 +0000 |
commit | 9dfada6aaa5bbdeae95706bad70116b9ea08fa7a (patch) | |
tree | ee61f716b53c057465f0c4ecda2d35cb5d6f7b1d /sys/dev/cardbus | |
parent | 7d8a2e7ebed1af876ebeb527861bf6c4fe108ba3 (diff) |
- scb_wait() is now time based (not cpu speed based)
- rearrange multicast setup to be part of init
- convert cu operations to bus_dma(9) (still have to do RFA ops).
Diffstat (limited to 'sys/dev/cardbus')
-rw-r--r-- | sys/dev/cardbus/if_fxp_cardbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cardbus/if_fxp_cardbus.c b/sys/dev/cardbus/if_fxp_cardbus.c index a97eed994c9..85123ab7c13 100644 --- a/sys/dev/cardbus/if_fxp_cardbus.c +++ b/sys/dev/cardbus/if_fxp_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_fxp_cardbus.c,v 1.2 2000/09/17 17:08:16 aaron Exp $ */ +/* $OpenBSD: if_fxp_cardbus.c,v 1.3 2001/08/09 21:12:51 jason Exp $ */ /* $NetBSD: if_fxp_cardbus.c,v 1.12 2000/05/08 18:23:36 thorpej Exp $ */ /* @@ -175,8 +175,8 @@ fxp_cardbus_attach(parent, self, aux) else printf("\n"); -#if 0 sc->sc_dmat = ca->ca_dmat; +#if 0 sc->sc_enable = fxp_cardbus_enable; sc->sc_disable = fxp_cardbus_disable; sc->sc_enabled = 0; |