Deleted Added
full compact
if_rsureg.h (288414) if_rsureg.h (289168)
1/*-
2 * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 * $OpenBSD: if_rsureg.h,v 1.3 2013/04/15 09:23:01 mglocker Exp $
1/*-
2 * Copyright (c) 2010 Damien Bergamini <damien.bergamini@free.fr>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 *
16 * $OpenBSD: if_rsureg.h,v 1.3 2013/04/15 09:23:01 mglocker Exp $
17 * $FreeBSD: head/sys/dev/usb/wlan/if_rsureg.h 288414 2015-09-30 05:19:16Z adrian $
17 * $FreeBSD: head/sys/dev/usb/wlan/if_rsureg.h 289168 2015-10-12 05:21:51Z adrian $
18 */
19
20/* USB Requests. */
21#define R92S_REQ_REGS 0x05
22
23/*
24 * MAC registers.
25 */

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

788 STAILQ_HEAD(, rsu_data) sc_tx_inactive;
789 STAILQ_HEAD(, rsu_data) sc_tx_pending[RSU_N_TRANSFER];
790
791 union {
792 struct rsu_rx_radiotap_header th;
793 uint8_t pad[64];
794 } sc_rxtapu;
795#define sc_rxtap sc_rxtapu.th
18 */
19
20/* USB Requests. */
21#define R92S_REQ_REGS 0x05
22
23/*
24 * MAC registers.
25 */

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

788 STAILQ_HEAD(, rsu_data) sc_tx_inactive;
789 STAILQ_HEAD(, rsu_data) sc_tx_pending[RSU_N_TRANSFER];
790
791 union {
792 struct rsu_rx_radiotap_header th;
793 uint8_t pad[64];
794 } sc_rxtapu;
795#define sc_rxtap sc_rxtapu.th
796 int sc_rxtap_len;
797
798 union {
799 struct rsu_tx_radiotap_header th;
800 uint8_t pad[64];
801 } sc_txtapu;
802#define sc_txtap sc_txtapu.th
796
797 union {
798 struct rsu_tx_radiotap_header th;
799 uint8_t pad[64];
800 } sc_txtapu;
801#define sc_txtap sc_txtapu.th
803 int sc_txtap_len;
804};
802};