Deleted Added
full compact
if_bwn.c (299036) if_bwn.c (299097)
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 299036 2016-05-04 02:11:45Z adrian $");
31__FBSDID("$FreeBSD: head/sys/dev/bwn/if_bwn.c 299097 2016-05-04 23:38:27Z adrian $");
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>

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

6874 sizeof(struct bwn_softc)
6875};
6876static devclass_t bwn_devclass;
6877DRIVER_MODULE(bwn, siba_bwn, bwn_driver, bwn_devclass, 0, 0);
6878MODULE_DEPEND(bwn, siba_bwn, 1, 1, 1);
6879MODULE_DEPEND(bwn, wlan, 1, 1, 1); /* 802.11 media layer */
6880MODULE_DEPEND(bwn, firmware, 1, 1, 1); /* firmware support */
6881MODULE_DEPEND(bwn, wlan_amrr, 1, 1, 1);
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>

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

6874 sizeof(struct bwn_softc)
6875};
6876static devclass_t bwn_devclass;
6877DRIVER_MODULE(bwn, siba_bwn, bwn_driver, bwn_devclass, 0, 0);
6878MODULE_DEPEND(bwn, siba_bwn, 1, 1, 1);
6879MODULE_DEPEND(bwn, wlan, 1, 1, 1); /* 802.11 media layer */
6880MODULE_DEPEND(bwn, firmware, 1, 1, 1); /* firmware support */
6881MODULE_DEPEND(bwn, wlan_amrr, 1, 1, 1);
6882MODULE_VERSION(bwn, 1);