Deleted Added
full compact
rt2661var.h (192468) rt2661var.h (206358)
1/* $FreeBSD: head/sys/dev/ral/rt2661var.h 192468 2009-05-20 20:00:40Z sam $ */
1/* $FreeBSD: head/sys/dev/ral/rt2661var.h 206358 2010-04-07 15:29:13Z rpaulo $ */
2
3/*-
4 * Copyright (c) 2005
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.

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

83 bus_addr_t physaddr;
84 struct rt2661_rx_desc *desc;
85 struct rt2661_rx_data *data;
86 int count;
87 int cur;
88 int next;
89};
90
2
3/*-
4 * Copyright (c) 2005
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.

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

83 bus_addr_t physaddr;
84 struct rt2661_rx_desc *desc;
85 struct rt2661_rx_data *data;
86 int count;
87 int cur;
88 int next;
89};
90
91struct rt2661_node {
92 struct ieee80211_node ni;
93 struct ieee80211_amrr_node amrr;
94};
95#define RT2661_NODE(ni) ((struct rt2661_node *)(ni))
96
97struct rt2661_vap {
98 struct ieee80211vap ral_vap;
91struct rt2661_vap {
92 struct ieee80211vap ral_vap;
99 struct ieee80211_amrr amrr;
100
101 int (*ral_newstate)(struct ieee80211vap *,
102 enum ieee80211_state, int);
103};
104#define RT2661_VAP(vap) ((struct rt2661_vap *)(vap))
105
106struct rt2661_softc {
107 struct ifnet *sc_ifp;

--- 73 unchanged lines hidden ---
93
94 int (*ral_newstate)(struct ieee80211vap *,
95 enum ieee80211_state, int);
96};
97#define RT2661_VAP(vap) ((struct rt2661_vap *)(vap))
98
99struct rt2661_softc {
100 struct ifnet *sc_ifp;

--- 73 unchanged lines hidden ---