Deleted Added
full compact
if_uathvar.h (192984) if_uathvar.h (244503)
1/* $OpenBSD: if_uathvar.h,v 1.3 2006/09/20 19:47:17 damien Exp $ */
1/* $OpenBSD: if_uathvar.h,v 1.3 2006/09/20 19:47:17 damien Exp $ */
2/* $FreeBSD: head/sys/dev/usb/wlan/if_uathvar.h 192984 2009-05-28 17:36:36Z thompsa $ */
2/* $FreeBSD: head/sys/dev/usb/wlan/if_uathvar.h 244503 2012-12-20 18:38:02Z hselasky $ */
3
4/*-
5 * Copyright (c) 2006
6 * Damien Bergamini <damien.bergamini@free.fr>
7 * Copyright (c) 2006 Sam Leffler, Errno Consulting
8 * Copyright (c) 2008-2009 Weongyo Jeong <weongyo@freebsd.org>
9 *
10 * Permission to use, copy, modify, and distribute this software for any

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

181 enum ieee80211_state, int);
182};
183#define UATH_VAP(vap) ((struct uath_vap *)(vap))
184
185struct uath_softc {
186 struct ifnet *sc_ifp;
187 device_t sc_dev;
188 struct usb_device *sc_udev;
3
4/*-
5 * Copyright (c) 2006
6 * Damien Bergamini <damien.bergamini@free.fr>
7 * Copyright (c) 2006 Sam Leffler, Errno Consulting
8 * Copyright (c) 2008-2009 Weongyo Jeong <weongyo@freebsd.org>
9 *
10 * Permission to use, copy, modify, and distribute this software for any

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

181 enum ieee80211_state, int);
182};
183#define UATH_VAP(vap) ((struct uath_vap *)(vap))
184
185struct uath_softc {
186 struct ifnet *sc_ifp;
187 device_t sc_dev;
188 struct usb_device *sc_udev;
189 void *sc_cmd_dma_buf;
190 void *sc_tx_dma_buf;
189 struct mtx sc_mtx;
190 uint32_t sc_debug;
191
192 struct uath_stat sc_stat;
193 int (*sc_newstate)(struct ieee80211com *,
194 enum ieee80211_state, int);
195
196 struct usb_xfer *sc_xfer[UATH_N_XFERS];

--- 49 unchanged lines hidden ---
191 struct mtx sc_mtx;
192 uint32_t sc_debug;
193
194 struct uath_stat sc_stat;
195 int (*sc_newstate)(struct ieee80211com *,
196 enum ieee80211_state, int);
197
198 struct usb_xfer *sc_xfer[UATH_N_XFERS];

--- 49 unchanged lines hidden ---