diff options
| author | Sam Leffler <sam@FreeBSD.org> | 2008-05-12 00:15:30 +0000 |
|---|---|---|
| committer | Sam Leffler <sam@FreeBSD.org> | 2008-05-12 00:15:30 +0000 |
| commit | c43feede8b1d9b4a97125557868889a2af51b421 (patch) | |
| tree | 3cf79416d2ad19b6945f31a06a6e43e73f0d5527 /sys/dev/ral | |
| parent | fb39d28da551499eb991ce3206d8a2010bd9a5ce (diff) | |
Notes
Diffstat (limited to 'sys/dev/ral')
| -rw-r--r-- | sys/dev/ral/rt2560.c | 3 | ||||
| -rw-r--r-- | sys/dev/ral/rt2661.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ral/rt2560.c b/sys/dev/ral/rt2560.c index 2f651125c1a8..e8823b126c81 100644 --- a/sys/dev/ral/rt2560.c +++ b/sys/dev/ral/rt2560.c @@ -278,7 +278,8 @@ rt2560_attach(device_t dev, int id) /* set device capabilities */ ic->ic_caps = - IEEE80211_C_IBSS /* ibss, nee adhoc, mode */ + IEEE80211_C_STA /* station mode */ + | IEEE80211_C_IBSS /* ibss, nee adhoc, mode */ | IEEE80211_C_HOSTAP /* hostap mode */ | IEEE80211_C_MONITOR /* monitor mode */ | IEEE80211_C_AHDEMO /* adhoc demo mode */ diff --git a/sys/dev/ral/rt2661.c b/sys/dev/ral/rt2661.c index 0bf2bc7718fb..7dfb63516f2c 100644 --- a/sys/dev/ral/rt2661.c +++ b/sys/dev/ral/rt2661.c @@ -280,7 +280,8 @@ rt2661_attach(device_t dev, int id) /* set device capabilities */ ic->ic_caps = - IEEE80211_C_IBSS /* ibss, nee adhoc, mode */ + IEEE80211_C_STA /* station mode */ + | IEEE80211_C_IBSS /* ibss, nee adhoc, mode */ | IEEE80211_C_HOSTAP /* hostap mode */ | IEEE80211_C_MONITOR /* monitor mode */ | IEEE80211_C_AHDEMO /* adhoc demo mode */ |
