Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
54f5ffbf
Commit
54f5ffbf
authored
Apr 01, 2012
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless
parents
1d24fb36
de312db3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
13 deletions
+17
-13
MAINTAINERS
MAINTAINERS
+4
-8
drivers/net/wireless/ath/ath9k/main.c
drivers/net/wireless/ath/ath9k/main.c
+2
-2
drivers/net/wireless/ipw2x00/ipw2200.c
drivers/net/wireless/ipw2x00/ipw2200.c
+2
-2
drivers/net/wireless/orinoco/main.c
drivers/net/wireless/orinoco/main.c
+8
-0
net/mac80211/scan.c
net/mac80211/scan.c
+1
-1
No files found.
MAINTAINERS
View file @
54f5ffbf
...
...
@@ -3553,17 +3553,13 @@ L: linux-pm@vger.kernel.org
S: Supported
F: arch/x86/platform/mrst/pmu.*
INTEL PRO/WIRELESS 2100 NETWORK CONNECTION SUPPORT
INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
M: Stanislav Yakovlev <stas.yakovlev@gmail.com>
L: linux-wireless@vger.kernel.org
S:
Orphan
S:
Maintained
F: Documentation/networking/README.ipw2100
F: drivers/net/wireless/ipw2x00/ipw2100.*
INTEL PRO/WIRELESS 2915ABG NETWORK CONNECTION SUPPORT
L: linux-wireless@vger.kernel.org
S: Orphan
F: Documentation/networking/README.ipw2200
F: drivers/net/wireless/ipw2x00/
ipw2200.*
F: drivers/net/wireless/ipw2x00/
INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
M: Joseph Cihula <joseph.cihula@intel.com>
...
...
drivers/net/wireless/ath/ath9k/main.c
View file @
54f5ffbf
...
...
@@ -640,7 +640,7 @@ static void ath_node_attach(struct ath_softc *sc, struct ieee80211_sta *sta,
an
->
sta
=
sta
;
an
->
vif
=
vif
;
if
(
s
ta
->
ht_cap
.
ht_supported
)
{
if
(
s
c
->
sc_ah
->
caps
.
hw_caps
&
ATH9K_HW_CAP_HT
)
{
ath_tx_node_init
(
sc
,
an
);
an
->
maxampdu
=
1
<<
(
IEEE80211_HT_MAX_AMPDU_FACTOR
+
sta
->
ht_cap
.
ampdu_factor
);
...
...
@@ -659,7 +659,7 @@ static void ath_node_detach(struct ath_softc *sc, struct ieee80211_sta *sta)
an
->
sta
=
NULL
;
#endif
if
(
s
ta
->
ht_cap
.
ht_supported
)
if
(
s
c
->
sc_ah
->
caps
.
hw_caps
&
ATH9K_HW_CAP_HT
)
ath_tx_node_cleanup
(
sc
,
an
);
}
...
...
drivers/net/wireless/ipw2x00/ipw2200.c
View file @
54f5ffbf
...
...
@@ -11507,9 +11507,9 @@ static int ipw_wdev_init(struct net_device *dev)
rc
=
-
ENOMEM
;
goto
out
;
}
/* translate geo->
bg
to a_band.channels */
/* translate geo->
a
to a_band.channels */
for
(
i
=
0
;
i
<
geo
->
a_channels
;
i
++
)
{
a_band
->
channels
[
i
].
band
=
IEEE80211_BAND_
2
GHZ
;
a_band
->
channels
[
i
].
band
=
IEEE80211_BAND_
5
GHZ
;
a_band
->
channels
[
i
].
center_freq
=
geo
->
a
[
i
].
freq
;
a_band
->
channels
[
i
].
hw_value
=
geo
->
a
[
i
].
channel
;
a_band
->
channels
[
i
].
max_power
=
geo
->
a
[
i
].
max_power
;
...
...
drivers/net/wireless/orinoco/main.c
View file @
54f5ffbf
...
...
@@ -1336,6 +1336,10 @@ static void qbuf_scan(struct orinoco_private *priv, void *buf,
unsigned
long
flags
;
sd
=
kmalloc
(
sizeof
(
*
sd
),
GFP_ATOMIC
);
if
(
!
sd
)
{
printk
(
KERN_ERR
"%s: failed to alloc memory
\n
"
,
__func__
);
return
;
}
sd
->
buf
=
buf
;
sd
->
len
=
len
;
sd
->
type
=
type
;
...
...
@@ -1353,6 +1357,10 @@ static void qabort_scan(struct orinoco_private *priv)
unsigned
long
flags
;
sd
=
kmalloc
(
sizeof
(
*
sd
),
GFP_ATOMIC
);
if
(
!
sd
)
{
printk
(
KERN_ERR
"%s: failed to alloc memory
\n
"
,
__func__
);
return
;
}
sd
->
len
=
-
1
;
/* Abort */
spin_lock_irqsave
(
&
priv
->
scan_lock
,
flags
);
...
...
net/mac80211/scan.c
View file @
54f5ffbf
...
...
@@ -370,7 +370,7 @@ static int ieee80211_start_sw_scan(struct ieee80211_local *local)
*/
drv_sw_scan_start
(
local
);
local
->
leave_oper_channel_time
=
0
;
local
->
leave_oper_channel_time
=
jiffies
;
local
->
next_scan_state
=
SCAN_DECISION
;
local
->
scan_channel_idx
=
0
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment