aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/ral
diff options
context:
space:
mode:
authorSam Leffler <sam@FreeBSD.org>2007-09-05 21:31:32 +0000
committerSam Leffler <sam@FreeBSD.org>2007-09-05 21:31:32 +0000
commit14fb6b8fe2dca7d3736d431ace232306e5afed31 (patch)
treec7c268164c82a154ffedc62c1299e8212a8aa455 /sys/dev/ral
parentdc60433061e9671a59402a7f18fc47bc4dd0ebd7 (diff)
downloadsrc-14fb6b8fe2dca7d3736d431ace232306e5afed31.tar.gz
src-14fb6b8fe2dca7d3736d431ace232306e5afed31.zip
o add 802.11 state machine states for DFS and client-side power save
o fixup drivers to ignore new states Reviewed by: avatar (?) Approved by: re (blanket wireless)
Notes
Notes: svn path=/head/; revision=172058
Diffstat (limited to 'sys/dev/ral')
-rw-r--r--sys/dev/ral/rt2560.c1
-rw-r--r--sys/dev/ral/rt2661.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/ral/rt2560.c b/sys/dev/ral/rt2560.c
index 678353a284ae..d799be413091 100644
--- a/sys/dev/ral/rt2560.c
+++ b/sys/dev/ral/rt2560.c
@@ -807,6 +807,7 @@ rt2560_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
case IEEE80211_S_SCAN:
case IEEE80211_S_AUTH:
case IEEE80211_S_ASSOC:
+ default:
break;
}
diff --git a/sys/dev/ral/rt2661.c b/sys/dev/ral/rt2661.c
index 533d2c5b0342..fde5738c47e7 100644
--- a/sys/dev/ral/rt2661.c
+++ b/sys/dev/ral/rt2661.c
@@ -821,6 +821,7 @@ rt2661_newstate(struct ieee80211com *ic, enum ieee80211_state nstate, int arg)
case IEEE80211_S_SCAN:
case IEEE80211_S_AUTH:
case IEEE80211_S_ASSOC:
+ default:
break;
}