aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorDamien Bergamini <damien@FreeBSD.org>2005-11-15 17:58:16 +0000
committerDamien Bergamini <damien@FreeBSD.org>2005-11-15 17:58:16 +0000
commit903c939fd52d3d38418efc6bb727189b800a2a85 (patch)
tree03de2809689a77d7e26f491cc55180ec875bb8fe /sys
parent8fe21ac40a42f3359b84a82be0319714c36f5b85 (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/usb/if_uralvar.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/dev/usb/if_uralvar.h b/sys/dev/usb/if_uralvar.h
index 160ad0d5c7d42..e39c387cdda0d 100644
--- a/sys/dev/usb/if_uralvar.h
+++ b/sys/dev/usb/if_uralvar.h
@@ -67,6 +67,14 @@ struct ural_rx_data {
struct mbuf *m;
};
+struct ural_amrr {
+ int txcnt;
+ int retrycnt;
+ int success;
+ int success_threshold;
+ int recovery;
+};
+
struct ural_softc {
struct ifnet *sc_ifp;
struct ieee80211com sc_ic;
@@ -88,6 +96,8 @@ struct ural_softc {
enum ieee80211_state sc_state;
struct usb_task sc_task;
+ struct ural_amrr amrr;
+
struct ural_rx_data rx_data[RAL_RX_LIST_COUNT];
struct ural_tx_data tx_data[RAL_TX_LIST_COUNT];
int tx_queued;