Deleted Added
full compact
if_ndis_pccard.c (188939) if_ndis_pccard.c (189488)
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

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

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
33#include <sys/cdefs.h>
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

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

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
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/sys/dev/if_ndis/if_ndis_pccard.c 188939 2009-02-23 18:16:17Z thompsa $");
34__FBSDID("$FreeBSD: head/sys/dev/if_ndis/if_ndis_pccard.c 189488 2009-03-07 07:26:22Z weongyo $");
35
36#include <sys/ctype.h>
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/module.h>
41#include <sys/socket.h>
42#include <sys/queue.h>
43#include <sys/sysctl.h>
44
45#include <net/if.h>
46#include <net/if_arp.h>
47#include <net/if_media.h>
48
49#include <machine/bus.h>
50#include <machine/resource.h>
51#include <sys/bus.h>
52#include <sys/rman.h>
53
35
36#include <sys/ctype.h>
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>
40#include <sys/module.h>
41#include <sys/socket.h>
42#include <sys/queue.h>
43#include <sys/sysctl.h>
44
45#include <net/if.h>
46#include <net/if_arp.h>
47#include <net/if_media.h>
48
49#include <machine/bus.h>
50#include <machine/resource.h>
51#include <sys/bus.h>
52#include <sys/rman.h>
53
54#include <dev/usb/usb.h>
55#include <dev/usb/usb_core.h>
56
54#include <net80211/ieee80211_var.h>
55
57#include <net80211/ieee80211_var.h>
58
56#include <legacy/dev/usb/usb.h>
57#include <legacy/dev/usb/usbdi.h>
58
59#include <compat/ndis/pe_var.h>
60#include <compat/ndis/cfg_var.h>
61#include <compat/ndis/resource_var.h>
62#include <compat/ndis/ntoskrnl_var.h>
63#include <compat/ndis/ndis_var.h>
64#include <dev/if_ndis/if_ndisvar.h>
65
66#include <dev/pccard/pccardvar.h>

--- 270 unchanged lines hidden ---
59#include <compat/ndis/pe_var.h>
60#include <compat/ndis/cfg_var.h>
61#include <compat/ndis/resource_var.h>
62#include <compat/ndis/ntoskrnl_var.h>
63#include <compat/ndis/ndis_var.h>
64#include <dev/if_ndis/if_ndisvar.h>
65
66#include <dev/pccard/pccardvar.h>

--- 270 unchanged lines hidden ---