Deleted Added
full compact
if_bwn.c (217511) if_bwn.c (219902)
1/*-
2 * Copyright (c) 2009-2010 Weongyo Jeong <weongyo@freebsd.org>
3 * 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

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

23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 */
29
30#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2009-2010 Weongyo Jeong <weongyo@freebsd.org>
3 * 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

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

23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
25 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
27 * THE POSSIBILITY OF SUCH DAMAGES.
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/bwn/if_bwn.c 217511 2011-01-17 20:15:15Z bschmidt $");
31__FBSDID("$FreeBSD: head/sys/dev/bwn/if_bwn.c 219902 2011-03-23 13:10:15Z jhb $");
32
33/*
34 * The Broadcom Wireless LAN controller driver.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/module.h>

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

974 device_printf(sc->sc_dev, "DMA (%d bits)\n",
975 mac->mac_method.dma.dmatype);
976 else
977 device_printf(sc->sc_dev, "PIO\n");
978
979 /*
980 * setup PCI resources and interrupt.
981 */
32
33/*
34 * The Broadcom Wireless LAN controller driver.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/module.h>

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

974 device_printf(sc->sc_dev, "DMA (%d bits)\n",
975 mac->mac_method.dma.dmatype);
976 else
977 device_printf(sc->sc_dev, "PIO\n");
978
979 /*
980 * setup PCI resources and interrupt.
981 */
982 if (pci_find_extcap(dev, PCIY_EXPRESS, &reg) == 0) {
982 if (pci_find_cap(dev, PCIY_EXPRESS, ®) == 0) {
983 msic = pci_msi_count(dev);
984 if (bootverbose)
985 device_printf(sc->sc_dev, "MSI count : %d\n", msic);
986 } else
987 msic = 0;
988
989 mac->mac_intr_spec = bwn_res_spec_legacy;
990 if (msic == BWN_MSI_MESSAGES && bwn_msi_disable == 0) {

--- 13254 unchanged lines hidden ---
983 msic = pci_msi_count(dev);
984 if (bootverbose)
985 device_printf(sc->sc_dev, "MSI count : %d\n", msic);
986 } else
987 msic = 0;
988
989 mac->mac_intr_spec = bwn_res_spec_legacy;
990 if (msic == BWN_MSI_MESSAGES && bwn_msi_disable == 0) {

--- 13254 unchanged lines hidden ---