Deleted Added
full compact
if_ndisvar.h (192984) if_ndisvar.h (193045)
1/*-
2 * Copyright (c) 2003
3 * Bill Paul <wpaul@windriver.com>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*-
2 * Copyright (c) 2003
3 * Bill Paul <wpaul@windriver.com>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
30 * THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/dev/if_ndis/if_ndisvar.h 192984 2009-05-28 17:36:36Z thompsa $
32 * $FreeBSD: head/sys/dev/if_ndis/if_ndisvar.h 193045 2009-05-29 18:46:57Z thompsa $
33 */
34
35#define NDIS_DEFAULT_NODENAME "FreeBSD NDIS node"
36#define NDIS_NODENAME_LEN 32
37
38/* For setting/getting OIDs from userspace. */
39
40struct ndis_oid_data {

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

133 uint8_t *nx_urbbuf;
134 uint32_t nx_urbactlen;
135 uint32_t nx_urblen;
136 uint8_t nx_shortxfer;
137 list_entry nx_next;
138};
139struct ndisusb_xferdone {
140 struct ndisusb_xfer *nd_xfer;
33 */
34
35#define NDIS_DEFAULT_NODENAME "FreeBSD NDIS node"
36#define NDIS_NODENAME_LEN 32
37
38/* For setting/getting OIDs from userspace. */
39
40struct ndis_oid_data {

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

133 uint8_t *nx_urbbuf;
134 uint32_t nx_urbactlen;
135 uint32_t nx_urblen;
136 uint8_t nx_shortxfer;
137 list_entry nx_next;
138};
139struct ndisusb_xferdone {
140 struct ndisusb_xfer *nd_xfer;
141 usb2_error_t nd_status;
141 usb_error_t nd_status;
142 list_entry nd_donelist;
143};
144
145struct ndisusb_task {
146 unsigned nt_type;
147#define NDISUSB_TASK_TSTART 0
148#define NDISUSB_TASK_IRPCANCEL 1
149#define NDISUSB_TASK_VENDOR 2

--- 104 unchanged lines hidden ---
142 list_entry nd_donelist;
143};
144
145struct ndisusb_task {
146 unsigned nt_type;
147#define NDISUSB_TASK_TSTART 0
148#define NDISUSB_TASK_IRPCANCEL 1
149#define NDISUSB_TASK_VENDOR 2

--- 104 unchanged lines hidden ---