Deleted Added
full compact
if_uath.c (293339) if_uath.c (298818)
1/*-
2 * Copyright (c) 2006 Sam Leffler, Errno Consulting
3 * Copyright (c) 2008-2009 Weongyo Jeong <weongyo@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

44 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
45 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
46 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
47 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
48 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49 */
50
51#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2006 Sam Leffler, Errno Consulting
3 * Copyright (c) 2008-2009 Weongyo Jeong <weongyo@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

44 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
45 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
46 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
47 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
48 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49 */
50
51#include <sys/cdefs.h>
52__FBSDID("$FreeBSD: head/sys/dev/usb/wlan/if_uath.c 293339 2016-01-07 18:41:03Z avos $");
52__FBSDID("$FreeBSD: head/sys/dev/usb/wlan/if_uath.c 298818 2016-04-29 22:14:11Z avos $");
53
54/*-
55 * Driver for Atheros AR5523 USB parts.
56 *
57 * The driver requires firmware to be loaded into the device. This
58 * is done on device discovery from a user application (uathload)
59 * that is launched by devd when a device with suitable product ID
60 * is recognized. Once firmware has been loaded the device will

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

323}
324
325static int
326uath_attach(device_t dev)
327{
328 struct uath_softc *sc = device_get_softc(dev);
329 struct usb_attach_arg *uaa = device_get_ivars(dev);
330 struct ieee80211com *ic = &sc->sc_ic;
53
54/*-
55 * Driver for Atheros AR5523 USB parts.
56 *
57 * The driver requires firmware to be loaded into the device. This
58 * is done on device discovery from a user application (uathload)
59 * that is launched by devd when a device with suitable product ID
60 * is recognized. Once firmware has been loaded the device will

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

323}
324
325static int
326uath_attach(device_t dev)
327{
328 struct uath_softc *sc = device_get_softc(dev);
329 struct usb_attach_arg *uaa = device_get_ivars(dev);
330 struct ieee80211com *ic = &sc->sc_ic;
331 uint8_t bands[howmany(IEEE80211_MODE_MAX, 8)];
331 uint8_t bands[IEEE80211_MODE_BYTES];
332 uint8_t iface_index = UATH_IFACE_INDEX; /* XXX */
333 usb_error_t error;
334
335 sc->sc_dev = dev;
336 sc->sc_udev = uaa->device;
337#ifdef UATH_DEBUG
338 sc->sc_debug = uath_debug;
339#endif

--- 2459 unchanged lines hidden ---
332 uint8_t iface_index = UATH_IFACE_INDEX; /* XXX */
333 usb_error_t error;
334
335 sc->sc_dev = dev;
336 sc->sc_udev = uaa->device;
337#ifdef UATH_DEBUG
338 sc->sc_debug = uath_debug;
339#endif

--- 2459 unchanged lines hidden ---