Deleted Added
full compact
if_urtwvar.h (203087) if_urtwvar.h (244503)
1/* $FreeBSD: head/sys/dev/usb/wlan/if_urtwvar.h 203087 2010-01-27 19:43:14Z weongyo $ */
1/* $FreeBSD: head/sys/dev/usb/wlan/if_urtwvar.h 244503 2012-12-20 18:38:02Z hselasky $ */
2
3/*-
4 * Copyright (c) 2008 Weongyo Jeong <weongyo@FreeBSD.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *

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

92};
93#define URTW_VAP(vap) ((struct urtw_vap *)(vap))
94
95struct urtw_softc {
96 struct ifnet *sc_ifp;
97 device_t sc_dev;
98 struct usb_device *sc_udev;
99 struct mtx sc_mtx;
2
3/*-
4 * Copyright (c) 2008 Weongyo Jeong <weongyo@FreeBSD.org>
5 *
6 * Permission to use, copy, modify, and distribute this software for any
7 * purpose with or without fee is hereby granted, provided that the above
8 * copyright notice and this permission notice appear in all copies.
9 *

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

92};
93#define URTW_VAP(vap) ((struct urtw_vap *)(vap))
94
95struct urtw_softc {
96 struct ifnet *sc_ifp;
97 device_t sc_dev;
98 struct usb_device *sc_udev;
99 struct mtx sc_mtx;
100 void *sc_tx_dma_buf;
100
101 int sc_debug;
102 int sc_if_flags;
103 int sc_flags;
104#define URTW_INIT_ONCE (1 << 1)
105#define URTW_RTL8187B (1 << 2)
106#define URTW_RTL8187B_REV_B (1 << 3)
107#define URTW_RTL8187B_REV_D (1 << 4)

--- 79 unchanged lines hidden ---
101
102 int sc_debug;
103 int sc_if_flags;
104 int sc_flags;
105#define URTW_INIT_ONCE (1 << 1)
106#define URTW_RTL8187B (1 << 2)
107#define URTW_RTL8187B_REV_B (1 << 3)
108#define URTW_RTL8187B_REV_D (1 << 4)

--- 79 unchanged lines hidden ---