rt2860.c (876d357fa7bc8aeb8d050dd8fe227dd4fd8ed4df) rt2860.c (a061fea6eeb689ab01affff1350cc47beb4a0ce5)
1/*-
2 * Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
3 * Copyright (c) 2012 Bernhard Schmidt <bschmidt@FreeBSD.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

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

227};
228
229int
230rt2860_attach(device_t dev, int id)
231{
232 struct rt2860_softc *sc = device_get_softc(dev);
233 struct ieee80211com *ic = &sc->sc_ic;
234 uint32_t tmp;
1/*-
2 * Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr>
3 * Copyright (c) 2012 Bernhard Schmidt <bschmidt@FreeBSD.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *

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

227};
228
229int
230rt2860_attach(device_t dev, int id)
231{
232 struct rt2860_softc *sc = device_get_softc(dev);
233 struct ieee80211com *ic = &sc->sc_ic;
234 uint32_t tmp;
235 uint8_t bands[howmany(IEEE80211_MODE_MAX, 8)];
235 uint8_t bands[IEEE80211_MODE_BYTES];
236 int error, ntries, qid;
237
238 sc->sc_dev = dev;
239 sc->sc_debug = 0;
240
241 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
242 MTX_DEF | MTX_RECURSE);
243

--- 4087 unchanged lines hidden ---
236 int error, ntries, qid;
237
238 sc->sc_dev = dev;
239 sc->sc_debug = 0;
240
241 mtx_init(&sc->sc_mtx, device_get_nameunit(dev), MTX_NETWORK_LOCK,
242 MTX_DEF | MTX_RECURSE);
243

--- 4087 unchanged lines hidden ---