diff options
author | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-03-18 14:40:48 +0000 |
---|---|---|
committer | Marcus Glocker <mglocker@cvs.openbsd.org> | 2007-03-18 14:40:48 +0000 |
commit | e998a06b05278a8f2ae53aac67da076c0ad2f7f9 (patch) | |
tree | 67f27ce75e46b3c11bc3c135ac744de1bd3f6b3b /sys/dev/ic/bcwvar.h | |
parent | 0c2434937bf20792d51dfa39fcfb43eed486944c (diff) |
o Add bcw_80211_core_init() according to
http://bcm-specs.sipsolutions.net/80211Init.
o Add a rewritten version of bcw_core_reset() called bcw_80211_core_reset()
according to http://bcm-specs.sipsolutions.net/80211CoreReset. This
will probably replace bcw_core_reset(), but I need more verification
first.
o Add bcw_core_enable() and bcw_core_disable(). There seems to be
devices which contain several 802.11 cores. The unused needs to be
disabled.
Diffstat (limited to 'sys/dev/ic/bcwvar.h')
-rw-r--r-- | sys/dev/ic/bcwvar.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/dev/ic/bcwvar.h b/sys/dev/ic/bcwvar.h index 0e9614f9fcd..d1aa1c856e8 100644 --- a/sys/dev/ic/bcwvar.h +++ b/sys/dev/ic/bcwvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bcwvar.h,v 1.29 2007/03/16 07:05:13 mglocker Exp $ */ +/* $OpenBSD: bcwvar.h,v 1.30 2007/03/18 14:40:47 mglocker Exp $ */ /* * Copyright (c) 2006 Jon Simola <jsimola@gmail.com> @@ -25,6 +25,9 @@ #define BCW_ARRAY_SIZE(array) (sizeof(array) / sizeof(array[0])) +#define BCW_DEFAULT_SHORT_RETRY_LIMIT 7 +#define BCW_DEFAULT_LONG_RETRY_LIMIT 4 + struct fwheader { char filename[64]; int filesize; |