diff options
author | maxim <maxim@FreeBSD.org> | 2006-07-01 13:39:04 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2006-07-01 13:39:04 +0000 |
commit | ded2f080b7e72a8bbe4fe09b26f35f931ddbd28c (patch) | |
tree | 749ac98fe69711addc6477f16eff529d86121e72 | |
parent | 06ffdb7993da39c530af71e5e90abcca2f009fa0 (diff) | |
download | FreeBSD-src-ded2f080b7e72a8bbe4fe09b26f35f931ddbd28c.zip FreeBSD-src-ded2f080b7e72a8bbe4fe09b26f35f931ddbd28c.tar.gz |
o Remove rev. 1.30 leftover. From Damien: However, this code path
is never taken since there aren't any 802.11a ural(4) sticks available
on the market.
PR: kern/99676
Submitted by: KIYOHARA Takashi
Reviewed by: damien
MFC after: 1 week
-rw-r--r-- | sys/dev/usb/if_ural.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/if_ural.c b/sys/dev/usb/if_ural.c index 1a4bdec..40b8dd3 100644 --- a/sys/dev/usb/if_ural.c +++ b/sys/dev/usb/if_ural.c @@ -1746,7 +1746,7 @@ ural_set_chan(struct ural_softc *sc, struct ieee80211_channel *c) /* dual-band RF */ case RAL_RF_5222: - for (i = 0; i < ural_rf5222[i].chan != chan; i++); + for (i = 0; ural_rf5222[i].chan != chan; i++); ural_rf_write(sc, RAL_RF1, ural_rf5222[i].r1); ural_rf_write(sc, RAL_RF2, ural_rf5222[i].r2); |