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/pci/if_fxp_pci.c | |
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/pci/if_fxp_pci.c')
-rw-r--r-- | sys/dev/pci/if_fxp_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_fxp_pci.c b/sys/dev/pci/if_fxp_pci.c index f363ea7de19..da7d2a66bed 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.7 2001/08/03 23:28:49 chris Exp $ */ +/* $OpenBSD: if_fxp_pci.c,v 1.8 2001/08/09 21:12:51 jason Exp $ */ /* * Copyright (c) 1995, David Greenman @@ -137,6 +137,7 @@ fxp_pci_attach(parent, self, aux) return; } sc->sc_st = iot; + sc->sc_dmat = pa->pa_dmat; /* * Allocate our interrupt. |