Deleted Added
full compact
if_bwn.c (297409) if_bwn.c (298307)
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 297409 2016-03-30 06:48:09Z adrian $");
31__FBSDID("$FreeBSD: head/sys/dev/bwn/if_bwn.c 298307 2016-04-19 23:37:24Z pfg $");
32
33/*
34 * The Broadcom Wireless LAN controller driver.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>

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

901 SIBA_DEV(BROADCOM, 80211, 16, "Revision 16")
902};
903
904static int
905bwn_probe(device_t dev)
906{
907 int i;
908
32
33/*
34 * The Broadcom Wireless LAN controller driver.
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>
39#include <sys/kernel.h>

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

901 SIBA_DEV(BROADCOM, 80211, 16, "Revision 16")
902};
903
904static int
905bwn_probe(device_t dev)
906{
907 int i;
908
909 for (i = 0; i < sizeof(bwn_devs) / sizeof(bwn_devs[0]); i++) {
909 for (i = 0; i < nitems(bwn_devs); i++) {
910 if (siba_get_vendor(dev) == bwn_devs[i].sd_vendor &&
911 siba_get_device(dev) == bwn_devs[i].sd_device &&
912 siba_get_revid(dev) == bwn_devs[i].sd_rev)
913 return (BUS_PROBE_DEFAULT);
914 }
915
916 return (ENXIO);
917}

--- 13170 unchanged lines hidden ---
910 if (siba_get_vendor(dev) == bwn_devs[i].sd_vendor &&
911 siba_get_device(dev) == bwn_devs[i].sd_device &&
912 siba_get_revid(dev) == bwn_devs[i].sd_rev)
913 return (BUS_PROBE_DEFAULT);
914 }
915
916 return (ENXIO);
917}

--- 13170 unchanged lines hidden ---