Deleted Added
full compact
rt2560.c (298646) rt2560.c (298818)
1/* $FreeBSD: head/sys/dev/ral/rt2560.c 298646 2016-04-26 15:03:15Z pfg $ */
1/* $FreeBSD: head/sys/dev/ral/rt2560.c 298818 2016-04-29 22:14:11Z avos $ */
2
3/*-
4 * Copyright (c) 2005, 2006
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#include <sys/cdefs.h>
2
3/*-
4 * Copyright (c) 2005, 2006
5 * Damien Bergamini <damien.bergamini@free.fr>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
19
20#include <sys/cdefs.h>
21__FBSDID("$FreeBSD: head/sys/dev/ral/rt2560.c 298646 2016-04-26 15:03:15Z pfg $");
21__FBSDID("$FreeBSD: head/sys/dev/ral/rt2560.c 298818 2016-04-29 22:14:11Z avos $");
22
23/*-
24 * Ralink Technology RT2560 chipset driver
25 * http://www.ralinktech.com/
26 */
27
28#include <sys/param.h>
29#include <sys/sysctl.h>

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

194 RT2560_RF5222
195};
196
197int
198rt2560_attach(device_t dev, int id)
199{
200 struct rt2560_softc *sc = device_get_softc(dev);
201 struct ieee80211com *ic = &sc->sc_ic;
22
23/*-
24 * Ralink Technology RT2560 chipset driver
25 * http://www.ralinktech.com/
26 */
27
28#include <sys/param.h>
29#include <sys/sysctl.h>

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

194 RT2560_RF5222
195};
196
197int
198rt2560_attach(device_t dev, int id)
199{
200 struct rt2560_softc *sc = device_get_softc(dev);
201 struct ieee80211com *ic = &sc->sc_ic;
202 uint8_t bands[howmany(IEEE80211_MODE_MAX, 8)];
202 uint8_t bands[IEEE80211_MODE_BYTES];
203 int error;
204
205 sc->sc_dev = dev;
206
207 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
208 MTX_DEF | MTX_RECURSE);
209
210 callout_init_mtx(&sc->watchdog_ch, &sc->sc_mtx, 0);

--- 2535 unchanged lines hidden ---
203 int error;
204
205 sc->sc_dev = dev;
206
207 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
208 MTX_DEF | MTX_RECURSE);
209
210 callout_init_mtx(&sc->watchdog_ch, &sc->sc_mtx, 0);

--- 2535 unchanged lines hidden ---