diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2006-08-18 16:04:57 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2006-08-18 16:04:57 +0000 |
commit | ff94766c2beb28fb6248b4259bb919429a4aa548 (patch) | |
tree | 57367062c036463d0da19bff46d31bc8a7ce1ae3 /sys/dev/usb/if_ral.c | |
parent | 848d2552749a54b9ed90d36c9c804967f0dac8d6 (diff) |
set of unrelated cosmetic tweaks.
Diffstat (limited to 'sys/dev/usb/if_ral.c')
-rw-r--r-- | sys/dev/usb/if_ral.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/dev/usb/if_ral.c b/sys/dev/usb/if_ral.c index 5ec3f5313e2..2547838aa68 100644 --- a/sys/dev/usb/if_ral.c +++ b/sys/dev/usb/if_ral.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ral.c,v 1.74 2006/08/18 15:23:13 damien Exp $ */ +/* $OpenBSD: if_ral.c,v 1.75 2006/08/18 16:04:56 damien Exp $ */ /*- * Copyright (c) 2005, 2006 @@ -301,8 +301,8 @@ USB_ATTACH(ural) USBDEVNAME(sc->sc_dev), sc->macbbp_rev, sc->asic_rev, ural_get_rf(sc->rf_rev), ether_sprintf(ic->ic_myaddr)); - ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */ - ic->ic_opmode = IEEE80211_M_STA; /* default to BSS mode */ + ic->ic_phytype = IEEE80211_T_OFDM; /* not only, but not used */ + ic->ic_opmode = IEEE80211_M_STA; /* default to BSS mode */ ic->ic_state = IEEE80211_S_INIT; /* set device capabilities */ @@ -990,7 +990,10 @@ ural_setup_tx_desc(struct ural_softc *sc, struct ural_tx_desc *desc, desc->flags |= htole32(RAL_TX_NEWSEQ); desc->flags |= htole32(len << 16); - desc->wme = htole16(RAL_AIFSN(2) | RAL_LOGCWMIN(3) | RAL_LOGCWMAX(5)); + desc->wme = htole16( + RAL_AIFSN(2) | + RAL_LOGCWMIN(3) | + RAL_LOGCWMAX(5)); /* setup PLCP fields */ desc->plcp_signal = ural_plcp_signal(rate); @@ -2108,7 +2111,7 @@ ural_amrr_start(struct ural_softc *sc, struct ieee80211_node *ni) Static void ural_amrr_timeout(void *arg) { - struct ural_softc *sc = (struct ural_softc *)arg; + struct ural_softc *sc = arg; usb_device_request_t req; int s; |