diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-10-26 15:34:17 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-10-26 15:34:17 +0000 |
commit | 43782ab58acc9f9d055d1fc33d7069fe85857d90 (patch) | |
tree | 75ff040ecf49a4340cd89b95a47ff537576652da /sys/dev/pci | |
parent | b62dde670d7c7927ce0448b2c885cb9fdd70e437 (diff) |
Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress,
it does not yet handle bulk data copies or hostap mode. Only one model
currently supported, however driver may support other PRISM based adapters.
ok millert@ fgsch@
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_wi_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_wi_pci.c b/sys/dev/pci/if_wi_pci.c index ea21ec7b05f..4da9e155386 100644 --- a/sys/dev/pci/if_wi_pci.c +++ b/sys/dev/pci/if_wi_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_pci.c,v 1.35 2003/06/17 21:56:25 millert Exp $ */ +/* $OpenBSD: if_wi_pci.c,v 1.36 2003/10/26 15:34:15 drahn Exp $ */ /* * Copyright (c) 2001-2003 Todd C. Miller <Todd.Miller@courtesan.com> @@ -135,7 +135,7 @@ wi_pci_attach(struct device *parent, struct device *self, void *aux) pp = wi_pci_lookup(pa); if (pp->pp_attach(pa, sc) != 0) return; - wi_attach(sc); + wi_attach(sc, &wi_func_io); } /* |