rt2560.c (057b4402bf634907fd03590e2757e09e975d04c7) | rt2560.c (a061fea6eeb689ab01affff1350cc47beb4a0ce5) |
---|---|
1/* $FreeBSD$ */ 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 --- 185 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; | 1/* $FreeBSD$ */ 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 --- 185 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 --- |