Deleted Added
full compact
if_bwn.c (211314) if_bwn.c (213719)
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 211314 2010-08-14 20:12:10Z bschmidt $");
31__FBSDID("$FreeBSD: head/sys/dev/bwn/if_bwn.c 213719 2010-10-12 11:05:32Z joel $");
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>

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

2902 if (phy->set_antenna)
2903 phy->set_antenna(mac, BWN_ANT_DEFAULT);
2904
2905 if (sc->sc_rf_enabled != phy->rf_on) {
2906 if (sc->sc_rf_enabled) {
2907 bwn_rf_turnon(mac);
2908 if (!(mac->mac_flags & BWN_MAC_FLAG_RADIO_ON))
2909 device_printf(sc->sc_dev,
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>

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

2902 if (phy->set_antenna)
2903 phy->set_antenna(mac, BWN_ANT_DEFAULT);
2904
2905 if (sc->sc_rf_enabled != phy->rf_on) {
2906 if (sc->sc_rf_enabled) {
2907 bwn_rf_turnon(mac);
2908 if (!(mac->mac_flags & BWN_MAC_FLAG_RADIO_ON))
2909 device_printf(sc->sc_dev,
2910 "please turns on the RF switch\n");
2910 "please turn on the RF switch\n");
2911 } else
2912 bwn_rf_turnoff(mac);
2913 }
2914
2915 bwn_mac_enable(mac);
2916
2917fail:
2918 /*

--- 11333 unchanged lines hidden ---
2911 } else
2912 bwn_rf_turnoff(mac);
2913 }
2914
2915 bwn_mac_enable(mac);
2916
2917fail:
2918 /*

--- 11333 unchanged lines hidden ---