Deleted Added
full compact
rt2560var.h (192468) rt2560var.h (206358)
1/* $FreeBSD: head/sys/dev/ral/rt2560var.h 192468 2009-05-20 20:00:40Z sam $ */
1/* $FreeBSD: head/sys/dev/ral/rt2560var.h 206358 2010-04-07 15:29:13Z rpaulo $ */
2
3/*-
4 * Copyright (c) 2005, 2006
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

--- 80 unchanged lines hidden (view full) ---

90 struct rt2560_rx_desc *desc;
91 struct rt2560_rx_data *data;
92 int count;
93 int cur;
94 int next;
95 int cur_decrypt;
96};
97
2
3/*-
4 * Copyright (c) 2005, 2006
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.

--- 80 unchanged lines hidden (view full) ---

90 struct rt2560_rx_desc *desc;
91 struct rt2560_rx_data *data;
92 int count;
93 int cur;
94 int next;
95 int cur_decrypt;
96};
97
98struct rt2560_node {
99 struct ieee80211_node ni;
100 struct ieee80211_amrr_node amrr;
101};
102#define RT2560_NODE(ni) ((struct rt2560_node *)(ni))
103
104struct rt2560_vap {
105 struct ieee80211vap ral_vap;
106 struct ieee80211_beacon_offsets ral_bo;
98struct rt2560_vap {
99 struct ieee80211vap ral_vap;
100 struct ieee80211_beacon_offsets ral_bo;
107 struct ieee80211_amrr amrr;
108
109 int (*ral_newstate)(struct ieee80211vap *,
110 enum ieee80211_state, int);
111};
112#define RT2560_VAP(vap) ((struct rt2560_vap *)(vap))
113
114struct rt2560_softc {
115 struct ifnet *sc_ifp;

--- 60 unchanged lines hidden ---
101
102 int (*ral_newstate)(struct ieee80211vap *,
103 enum ieee80211_state, int);
104};
105#define RT2560_VAP(vap) ((struct rt2560_vap *)(vap))
106
107struct rt2560_softc {
108 struct ifnet *sc_ifp;

--- 60 unchanged lines hidden ---